我在texmaker中使用以下测试程序
例如
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{graphicx}
\usepackage{babel}
\usepackage{natbib}
\begin{document}
hello\citet*{greenwade93}
\bibliographystyle{plainat}
\bibliography{bibliography}
\end{document}参考书目中的条目是
@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",
year = "2004"
}当我构建bibtex和pdflatex时,输出只会是"hello?“(texmaker中没有错误/警告)。然后我运行了"pdflatex test“它显示
Package natbib Warning: Citation `greenwade93' on page 1 undefined on input lin
e 8.然后"bibtex test“显示
I couldn't open style file plainat.bst我在miktex包管理器中检查是否安装了natbib包,所有3个ntabib bst文件都在C:\Program Files (x86)\MiKTeX 2.8\bibtex\bst\natbib文件夹中。
发布于 2011-06-03 07:40:08
所需的.bst文件名为plainnat。您的n丢失了。尝试:
\bibliographystyle{plainnat}https://stackoverflow.com/questions/6221517
复制相似问题