我尝试在工作中使用natbib
哈佛agsm
风格,但没有成功。给出以下代码,我在 pdf 中得到输出:...(?),并在控制台中得到警告:
pdflatex> Package natbib Warning: There were undefined citations.
如果我改变 bibstyle,plainnat
它就可以工作。
这个例子中有什么问题?我怎样才能agsm
像 bibstyle 一样工作?
\documentclass{article}
\usepackage{natbib}
\usepackage{filecontents}
\bibliographystyle{agsm}
\begin{document}
\begin{filecontents}{mybib.bib}
@book{goossens93,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
\end{filecontents}
...test\citep{goossens93}
\bibliography{mybib}
\end{document}