I have a bibtex list of references and i would like to get the authors' names from a specific entry in my .bib file. Is there a command for that?
Asked
Active
Viewed 1,814 times
4
1 Answers
1
You could use the natbib package:
\documentclass{article}
\usepackage{natbib}
\begin{docuemnt}
\citeauthor{smith90}
\bibliography{bibliography.bib}
\end{document}
See here: http://merkel.zoneo.net/Latex/natbib.php
Ubiquitous
- 2,566
\getauthorname{<bibentry>}? – Werner Feb 05 '13 at 01:44.bibentry by key? – Werner Feb 05 '13 at 03:03