我正在使用 TexMaker,但在使用 natbib 时遇到了问题。当我按 F11 时,出现以下错误:错误:无法启动命令:bibtex“test”(其中“test”是文件的名称)。
我有一段时间没有使用 LaTeX 了。以前我可以毫无问题地编制参考书目。现在我又开始使用它了,却遇到了这个问题。我已经安装了新版的 TexMaker,但这没有帮助。
以下是我使用的代码:
\documentclass[a4paper]{article}
\usepackage[round]{natbib}
\title{Title}
\author{John Doe}
\date{\today}
\begin{document}
\maketitle
Hello \citep{asher2009}
\bibliographystyle{newapa}
\bibliography{bibliography}
\end{document}
谢谢!