I am having some simple problems getting natbib to work. I input the following into a .tex file.
Code: Select all
\documentclass[11pt]{article}
\usepackage{natbib}
\begin{document}
I used \cite{greenwade93} to write this article.
\bibliographystyle{plain}
\bibliography{2013-07-24-bibtex}
\end{document}
Code: Select all
@article{greenwade93,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351"
}
\citet
, however, the output citation is has the word author followed by a question mark and then the numeric citation: "(author?) [1]". Any suggestions on what I'm missing??
Thanks!!
Clark Kogan