我使用 authoryear(来自 biblatex)样式来写文章。但是,对于 beamer 演示文稿,这种样式没有用。事实上,完整的参考文献在演示文稿的末尾引用;所以我有几张幻灯片只有参考文献。我不会在演示文稿结束时花 5 分钟让每个人都阅读我的参考书目(这没有意义)。
如果我决定使用冗长的样式将参考文献放在脚注中,我会遇到其他问题:许多脚注占用了空间,而且它们太小而无法很好地阅读......
是否有人知道专为投影仪演示而设计的参考书目样式?
答案1
这是我经常使用的模板。它本质上是beamer
默认模板,但列表符号为三角形,而不是文档图标。
% arara: pdflatex
% arara: bibtex
% arara: pdflatex
\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents*}{literature.bib}
@book{van2012latex,
title={\LaTeX\ and Friends},
author={{van Dongen}, R.C.},
isbn={978-3-642-23816-1},
lccn={2011945089},
year={2012},
publisher={Springer}
}
@book{mittelbach2004latex,
title={The \LaTeX\ Companion},
author={Mittelbach, F. and Goossens, M.},
isbn={978-0-133-38764-3},
year={2004},
publisher={Pearson Education}
}
@book{knuth2004texbook,
title={The \TeX book},
author={Knuth, D.E.},
year={2004},
publisher={Addison-Wesley}
}
\end{filecontents*}
\setbeamertemplate{bibliography item}[triangle]
\begin{document}
\begin{frame}{Further Reading}
\raggedright
\nocite{*}
\bibliographystyle{plain}
\bibliography{literature}
\end{frame}
\end{document}