[Tex/LaTex] Place bibliography items at bottom of frame

beamerbiblatexbibliographiesfootnotes

Is there an easy way to add bibliography items to the bottom of a frame where they are referenced?

I am using Beamer and Biblatex.

Best Answer

BibLaTeX's \footfullcite (hat tip to lockstep) might do what you want.

\documentclass{beamer}
\usepackage{biblatex}
\bibliography{foo}
\begin{document}
\begin{frame}
Here is text\footfullcite{jones00}
\end{frame}
\end{document}

Will display the full reference to jones00 from the foo.bib bibliography.