将参考书目项目放在框架底部

将参考书目项目放在框架底部

是否有一种简单的方法可以将参考书目项目添加到引用它们的框架底部?

我正在使用 Beamer 和 Biblatex。

答案1

BibLaTeX \footfullcite(向 lockstep 致敬)可能会满足您的要求。

\documentclass{beamer}
\usepackage{biblatex}
\bibliography{foo}
\begin{document}
\begin{frame}
Here is text\footfullcite{jones00}
\end{frame}
\end{document}

将显示参考书目中对 jones00 的完整引用foo.bib

答案2

我已经使用过这个代码

\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},
}

它没有在幻灯片的脚注中打印参考资料......

相关内容