Document Classes ⇒ [Beamer] Bibliography in a footnote
-
- Posts: 18
- Joined: Tue Apr 01, 2008 1:09 pm
[Beamer] Bibliography in a footnote
In scientific talks it is common to have citations as a footnote on each slide.
I have heard about the footbib and jurabib packages but they don't seem to be compatible with beamer (at least without doing a lot of complicated things).
Is there a simple solution?
Thanks in advance,
Mathieu
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
[Beamer] Bibliography in a footnote
In your preamble, put:
Code: Select all
\usepackage{bibentry}
Code: Select all
\bibliographystyle{your_favorite_BibTeX_style}
\nobibliography{your_bib_file}
When you want to put a citation in one of your slides, put
Code: Select all
\footnote{\bibentry{BibTex_key_here}}
bibentry documentation: http://gking.harvard.edu/files/bibentry2.pdf
Working example with references at the end: http://stefaanlippens.net/bibentry
-
- Posts: 18
- Joined: Tue Apr 01, 2008 1:09 pm
[Beamer] Bibliography in a footnote
Thanks for the answer (and sorry for the delay I switched to something else and just returning to this).
I have tested the example on http://stefaanlippens.net/bibentry and it works fine. I have also transformed it to a simple example in beamer.
Nevertheless it doesn't work very well on my real example (beamer + some packages, some home-made macros (nothing fancy), large bibtex files).
If I use \nobibliography* there are some errors:
Code: Select all
Undefined control sequence.
<argument> ...hristensen, H.~I. (2008). \newblock
XXXXX
l.9 \end{frame}
I was not able to make the thing work with \nobibliography.
Do you have any idea?