使用 beamer 进行分段参考书目

使用 beamer 进行分段参考书目

有没有什么方法可以让投影仪中的章节引用类似于论文中章节引用的情况?

答案1

使用来\newrefsection将各个部分彼此分开以及使用多个\printbibliography[section=...]命令:

在此处输入图片描述

\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}


\section{first} \newrefsection
\begin{frame}{first frame of section 1}
Whatever text in the first section
\cite{westfahl:space}
\end{frame}

\begin{frame}{Bibliography of section 1}
\printbibliography[section=1]
\end{frame}

\section{second} \newrefsection
\begin{frame}{first frame of section 2}
Whatever text in the first section
\cite{aksin}
\cite{doody}
\end{frame}

\begin{frame}{Bibliography of section 2}
\printbibliography[section=2]
\end{frame}
\end{document}

相关内容