我一直在尝试让 BibTeX 工作,但真的很吃力。我花了一上午的时间在谷歌上搜索,并尝试使用其他人的例子,但没有成功。
我正在使用最新版本的 Mac OS X(Lion)、Emacs 和 AUCTeX。
问题是每次我尝试将 TeX 文件转换为 pdflatex 时,都会出现未解析的引用,并且所有引用都是 [?]。我的 TeX 文件和我的bib
文件位于同一个文件夹中。
\documentclass{article}
\begin{document}
\cite{who}
\bibliographystyle{plain}
\bibliography{test}
\end{document}
@ARTICLE{who,
author = {who},
year = {2008}
}
答案1
你需要在跑步bibtex
后继续跑pdflatex
:
pdflatex file
bibtex file
pdflatex file
pdflatex file