
이제 비머와 함께 natbib을 사용할 수 있나요? 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}
Till이 매뉴얼에서 말했듯이 참조(물론 마지막에 있는 '참고문헌'에 있는 것)는 프리젠테이션에서 제대로 작동하지 않습니다. 따라서 이 영역의 기능은 다소 제한됩니다.