Putting citation text on same slide with LaTeX Beamer
I have used the bibentry style for this (part of natbib), which just allows you to write \bibentry{key}
which directly expands to the full bibliographic entry.
To have the citation at the bottom of the same slide, we can use \footfullcite
instead of \fullcite
.
Complete steps would be:
- Include
\usepackage{biblatex}
and\bibliography{<your_bib_file>}
in your preamble. - Use
\footfullcite{paper}
in your frame.
If you use the biblatex package, you can insert a complete bibliographic entry with the \fullcite
command.
So here is a minimal (but complete) working example: Assuming .bib file is named as biblio.bib:
\documentclass{beamer}
\usepackage[style=verbose]{biblatex}
\bibliography{biblio}
\begin{document}
\begin{frame}
Some text.\footnote{Some text in a footnote.} Some more text.\footcite{foo12}
\end{frame}
\end{document}