Beamer:自定义参考顺序

Beamer:自定义参考顺序

我通常会在我的 beamer-presentation 中加入如下参考资料:

\begin{frame}
    \frametitle<presentation>{References}    
    \bibliographystyle{acm}
    \nocite{A}
    \nocite{B}
    \nocite{C}
    \setbeamertemplate{bibliography item}[text]
    \bibliography{../sources}
\end{frame}     

但是,对于我要做的演讲,我更希望将最重要的两篇论文放在开头(第一张参考幻灯片),然后是第二张幻灯片,其中包含其余参考资料。我如何才能做到这一点,而无需自己使用 bibtex 编写所有内容?

答案1

cslstr 的评论为我指明了正确的方向。为了便于将来参考,以下是完整(最小)答案:

\usepackage[backend=bibtex]{biblatex} 
\addbibresource{sources.bib} 

\begin{frame}
\frametitle{References}
    \nocite{A}
    \nocite{B}
    \nocite{C}
    \nocite{D}
    \nocite{E}
    \setbeamertemplate{bibliography item}[triangle]
    \printbibliography[keyword=main]
    \bigskip
    \printbibliography[notkeyword=main]
\end{frame}

这将首先列出 {A,B,C,D,E} 中包含关键字“main”的引用;其余的则在一些可用的垂直空间后列出。

相关内容