在 Beamer 中,参考书目以作者、标题和期刊分三行的方式显示。以下是一个例子。
由于我有很多参考文献,我想知道我们是否可以将它们放在一行以节省一些空间?另一个选择是我们是否可以将参考文献分成几张幻灯片?
答案1
要将参考文献分成多张幻灯片,请使用以下allowframebreaks
选项,例如:
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliographystyle{amsalpha}
\bibliography{../bib_files/jabrefmaster.bib}
\end{frame}
对于“三行拆分”,这是因为您要么使用内置\newblock
命令编写了参考书目列表,要么使用\bibliographystyle
插入\newblock
命令的。您的选择是删除 s \newblock
(将其编辑掉或使用不同的样式),或者修改 beamer 处理命令的方式。
从链接来看,在序言中设置以下内容应该有效:
\setbeamertemplate{bibliography entry title}{}
\setbeamertemplate{bibliography entry location}{}
\setbeamertemplate{bibliography entry note}{}