[Tex/LaTex] Bibtex file content won’t appear in beamer presentation

beamerbibliographiesbibtex

Somehow I can't get through this problem.
I have made a beamer presentation. At the very end of it I would like to present the .bib file that I have created. Though I get no errors, I also can not get any content of this file to appear.

Here is the code of the last frame:

\frame{
\frametitle{Literaturverzeichnis}
\nocite{*}
\bibliographystyle{amsalpha}
\bibliography{bibliographie}
}

Thanks a lot for your help.

Best Answer

I don't have any problems with your code.

\documentclass{beamer}

\begin{document}

\begin{frame}
\frametitle{Literaturverzeichnis} 
\nocite{*} 
\bibliographystyle{amsalpha} 
\bibliography{bibliographie} 
\end{frame}


\end{document}

You have to compile the file multiple times:

  • pdflatex
  • bibtex
  • pdflatex
  • pdflatex