Sorry. I apparently misunderstood your question. You can proceed as the following example suggests:
Code: Select all
\documentclass{beamer}
\begin{document}
\section{Test section}
\begin{frame}
Test text
\end{frame}
\section{Bibliography}
\begin{frame}[allowframebreaks]
\frametitle{Bibliography}
\nocite{*}
\bibliographystyle{plain}
\bibliography{biblio}
\end{frame}
\end{document}
and the database
biblio.bib (to make the example compilable for everyone):
Code: Select all
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@book{knuth79,
author = "Donald E. Knuth",
title = "Tex and Metafont, New Directions in Typesetting",
year = "1979",
publisher = "American Mathematical Society and Digital Press",
address = "Stanford"
}
@book{lamport94,
author = "Leslie Lamport",
title = "Latex: A Document Preparation System",
year = "1994",
edition = "Second",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
@misc{patashnik88,
author = "Oren Patashnik",
title = "{B}ib{T}e{X}ing. Documentation for General {B}ib{T}e{X} users",
year = "1988",
howpublished = "Electronic document accompanying BibTeX
distribution"
}
@techreport{rahtz89,
author = "Sebastian Rahtz",
title = "A Survey of {T}ex and graphics",
year = "1989",
institution = "Department of Electronics and Computer Science",
address = "University of Southampton, UK",
number = "CSTR 89-7"
}
I believe, however, that using
natbib for a bibliography in a beamer document will produce undesired results.
1,1,2,3,5,8,13,21,34,55,89,144,233,...