Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Putting citation text on same slide with LaTeX Beamer

By default, using \cite in the Beamer class of LaTeX places the actual citation information at the end of the presentation on a separate slide containing the bibliography. How does one get the citation information, instead, on the same slide as the citation (the expected, courteous practice for most presentations)?

like image 702
gotgenes Avatar asked Oct 02 '09 03:10

gotgenes


1 Answers

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.
like image 143
Joseph Avatar answered Sep 27 '22 22:09

Joseph