我有 9 张包含参考资料的幻灯片。如何减小字体大小,以便将其减少到 3 或 4 张幻灯片。我正在使用这个:
\begin{frame}[allowframebreaks]{Reference}
\begin{tiny}
\printbibliography
\end{tiny}
\end{frame}
请建议我减少参考书目中的文本大小或任何其他想法以将其容纳在 3 或 4 张幻灯片中。
答案1
以下内容基于另一位用户的代码,该用户非常友好地在问题中包含了 MWE。因此不确定这是否适合您。
\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\renewcommand*{\bibfont}{\scriptsize}
\begin{document}
\begin{frame}[allowframebreaks]
\nocite{*}
\printbibliography
\end{frame}
\end{document}