
¿Puedo usar natbib con beamer de alguna manera ahora? Cuando intento cargar el paquete natbib, el archivo no se compila. Hay alguna evidencia antigua de que aquí hay un conflicto: Beamer y Natbib. ¿Pero tal vez esto ya esté rectificado?
Respuesta1
El uso básico natbib
funciona conbeamer
\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}
Tenga en cuenta que, como dice Till en el manual, las referencias (ciertamente las que aparecen en una "bibliografía" al final) funcionan mal en una presentación. Como tal, la funcionalidad en esta área es algo limitada.