我可以將 natbib 與 beamer 一起使用嗎?

我可以將 natbib 與 beamer 一起使用嗎?

我現在可以以某種方式將 natbib 與 beamer 一起使用嗎?當我嘗試載入 natbib 套件時,該檔案無法編譯。有一些舊證據顯示這裡有衝突: 比默和納特比布。但也許現在已經修正了?

答案1

基本natbib用途確實適用於beamer

\begin{filecontents*}{\jobname.bib}
@Article{Herrmann1999,
  Title                    = {Ruthenium carbene complexes with imidazolin-2-ylidene ligands allow the formation of tetrasubstituted cycloalkenes by RCM},
  Author                   = {Ackermann, Lutz and Fürstner, Alois and Weskamp, Thomas and Kohl, Florian J. and Herrmann, Wolfgang A.},
  Journal                  = {Tetrahedron Lett.},
  Year                     = {1999},
  Number                   = {26},
  Pages                    = {4787-4790},
  Volume                   = {40},
}

\end{filecontents*}

\documentclass{beamer}
\usepackage{natbib}
\usepackage[utf8]{inputenc}
\begin{document}

\begin{frame}
 Hello world~\cite{Herrmann1999}
\end{frame}


\begin{frame}
\bibliography{\jobname}
\bibliographystyle{plainnat}
\end{frame}

\end{document}

請注意,正如蒂爾在手冊中所說,參考文獻(當然是最後「參考書目」中的參考文獻)在簡報中效果不佳。因此,該區域的功能有些有限。

相關內容