Hello everybody,
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
Document Classes ⇒ [Beamer] Bibliography in a footnote
NEW: TikZ book now 40% off at Amazon.com for a short time.

[Beamer] Bibliography in a footnote
After working on this problem for a while this morning, the best solution I've come up with for citations in Beamer footnotes seems to be the bibentry package.
In your preamble, put:
Somewhere in your document before you use any citations, put:
I put this on my first slide right before \titlepage; it doesn't seem to affect the output.
When you want to put a citation in one of your slides, put
This code works if you don't want a references slide at the end of your talk (which seems a bit superfluous to me). If you want a references slide in addition to footnotes, the syntax is a bit different.
bibentry documentation: http://gking.harvard.edu/files/bibentry2.pdf
Working example with references at the end: http://stefaanlippens.net/bibentry
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
Hello,
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:
But the PDF is produced.
I was not able to make the thing work with \nobibliography.
Do you have any idea?
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?