Is there an easy way to add bibliography items to the bottom of a frame where they are referenced?
I am using Beamer and Biblatex.
Is there an easy way to add bibliography items to the bottom of a frame where they are referenced?
I am using Beamer and Biblatex.
BibLaTeX's \footfullcite (hat tip to lockstep) might do what you want.
\documentclass{beamer}
\usepackage{biblatex}
\bibliography{foo}
\begin{document}
\begin{frame}
Here is text\footfullcite{jones00}
\end{frame}
\end{document}
Will display the full reference to jones00 from the foo.bib bibliography.
I have used this code
\documentclass{beamer}
%\usepackage{biblatex}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{biblatex-examples.bib}
%------------------------------------------------
\begin{frame}
Here is text \footfullcite{Vitay2014}. % this writes ref01 in footnote
Here is text \fullcite{Vitay2014}. % this writes ref01 in place
Here is text\footfullcite{Vitay2014}
\end{frame}
%------------------------------------------------
with the following bibliography entry
@article{Vitay2014,
title = {Timing and expectation of reward: a neuro-computational
model of the afferents to the ventral tegmental area.},
author = {Vitay, Julien and Hamker, Fred H.},
journal = {Frontiers in Neurorobotics},
year = {2014},
volume = {8},
number = {4},
pages = {1--14},
}
It does not print reference in the footnote of the slide...
\footcitedoesn't work as you want it to? – Seamus Nov 23 '10 at 16:07\footfullcitecommand which always prints a full citation. – lockstep Nov 26 '10 at 19:52