[Tex/LaTex] Cite bibliography in beamer

beamerbibliographies

I am preparing a beamer presentation. In some slides (4 of 30) I want to cite one or two bibliographic references and put them at the bottom of each slide. They lie there just as a bulleted list, not being cited in the text of the slide.

I wonder what is the best approach to do so.

PS: I forgot to mention that bibliographic entries are stored in a .bib file

Best Answer

EDIT

Here a minimal example, which you should provide.:

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{test,
author={John Smith},
title={A book},
publisher={Puplisher},
year={1742},
}
\end{filecontents*}
\documentclass{beamer}
\begin{document}
\begin{frame}
asd\cite{test}
\end{frame}

\begin{frame}
\bibliographystyle{alpha}

\bibliography{\jobname}
\end{frame}

\end{document}

ALSO NO PROBLEM -- but the same problem you have to provide a minimal example.