我怎样才能将投影仪书目分成两张幻灯片?

我怎样才能将投影仪书目分成两张幻灯片?

我在基于 的演示文稿中引用了几处内容beamer。是否可以将参考书目分成两张幻灯片?我正在使用natbib/ bibtex。目前我只有:

\begin{frame}

\tiny

\bibliographystyle{apalike}
\bibliography{Biblio-Database}

\end{frame}

但我们已经到了这样的地步微小的不行。有什么办法吗?我真想不是手动创建参考书目,因为我曾经“坚持”我省略了参考书目中的条目(我手动创建的)......没有什么比以文书遗漏结束更糟糕的了......

答案1

\begin{frame}[allowframebreaks]

\bibliographystyle{apalike}
\bibliography{Biblio-Database}

\end{frame}

完毕。 我在这里找到了它 :O)

答案2

对于从事以下工作的人员:

\frame{  
bla bla   
Content on the slide  
bla bla  
}  

必须[allowframebreaks]是这样的地方:

\frame[allowframebreaks]{  
\tiny\bibliography{Name of your Bibliographie}  
\bibliographystyle{Your bibliographystyle}  
}

答案3

对于那些在 Overleaf 上使用 biblatex 的人来说,这个方法很好用:

\begin{frame}[allowframebreaks]{Literature References}
    \tiny
    \printbibliography
\end{frame}

答案4

对于使用 pandoc markdown 的人来说,你可以这样做:

## References {.allowframebreaks}

相关内容