当我在演示文稿末尾添加带有参考资料的幻灯片时beamer
,第一张幻灯片总是比后续幻灯片向下一行。为什么?我该如何避免这种情况?
\documentclass{beamer}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\begin{frame}
\nocite{*}
\end{frame}
\begin{frame}[t, allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}
\end{document}
答案1
内部\printbibliography
是\list
。我能找到的最简单的解决方案就是添加 来消除之前的空间\vspace{-\topsep}
。
\vspace{-\topsep}\printbibliography