Is there a way to make BiBTeX and Beamer work together?
I tried to make my BiBTeX code work in Beamer without luck.
Here is my non-beamer code:
Code: Select all
\documentclass[man]{apa}
\usepackage{apacite}
\usepackage[english]{babel}
\begin{document}
Cite this: \cite{Piaget1969Psychology}
\bibliography{Guillaume}
\end{document}
Code: Select all
\documentclass{beamer}
\usepackage{apacite}
\usepackage[english]{babel}
\begin{document}
\begin{frame}
Cite this: \cite{Piaget1969Psychology}
\end{frame}
\begin{frame}[allowframebreaks]{References}
\bibliography{Guillaume}
\end{frame}
\end{document}