Document Classes ⇒ [Beamer] Bibliography in a footnote
-
duboismathieu
- 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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
[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
-
duboismathieu
- 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?