140

I have several citations in a beamer-based presentation. Is it possible to split the bibliography across two slides? I'm using natbib / bibtex. And I currently just have:

\begin{frame}

\tiny

\bibliographystyle{apalike}
\bibliography{Biblio-Database}

\end{frame}

But we're to the point where even tiny won't cut it. Is there anyway to do this? I'd really prefer to not create the bibliography by hand because I once had it 'stuck to me' that I omitted an entry in the bibliography (which I'd created by hand)... nothing quite like ending on a clerical omission...

4 Answers 4

214
\begin{frame}[allowframebreaks]

\bibliographystyle{apalike}
\bibliography{Biblio-Database}

\end{frame}

done. I found this here :O)

0
25

For people working with:

\frame{  
bla bla   
Content on the slide  
bla bla  
}  

the [allowframebreaks] has to be places like this:

\frame[allowframebreaks]{  
\tiny\bibliography{Name of your Bibliographie}  
\bibliographystyle{Your bibliographystyle}  
}
2

For those working with biblatex on Overleaf this works fine :

\begin{frame}[allowframebreaks]{Literature References}
    \tiny
    \printbibliography
\end{frame}
1

For people working with pandoc markdown, you do it like this:

## References {.allowframebreaks}

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .