我想更改幻灯片上的引文大小。我的相关序言:
\usepackage[style=apa,sorting=nyt,backend=biber]{biblatex}
\DeclareLanguageMapping{ngerman}{ngerman-apa}
\addbibresource{biblio1.bib}
%---------------Document-----------------------%
\begin{frame}[allowframebreaks]
\frametitle{References}
%\nocite{*}
\renewcommand*{\bibfont}{\scriptsize}
\printbibliography
\end{frame}
到目前为止我的做法是这样的:
{\tiny\parencite{Harris.12}}
问题:是否有选项可以将此格式化为 beamer-presentation 中的所有引用?
答案1
您可以使用\citesetup
来提供在每个引用命令开始时要执行的代码;一个小例子(在例子中我改变了样式和.bib
使用的文件,但这并不重要):
\documentclass{beamer}
\usepackage[style=authoryear,sorting=nyt,backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\renewcommand\citesetup{\tiny}
\begin{document}
\begin{frame}
As we can see in~\parencite{angenendt}, this experiment was succesful.
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{References}
\renewcommand*{\bibfont}{\scriptsize}
\printbibliography
\end{frame}
\end{document}