参考书目未显示任何条目

参考书目未显示任何条目

我目前在使用 中的参考书目时遇到问题LaTeX。我使用 .bib 文件添加它,但它没有显示任何参考。我还运行了LaTeX,运行bibtex,然后又运行了 latex 两次。我在正文中引用了它,但也使用了\notice{*}以确保万无一失。下面我有一个 MWE,它显示了问题。

谢谢您的帮助!

这是作为主文档的主文件:

\documentclass[10pt,a4paper]{report}
\usepackage [version=4] {mhchem}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}

\begin{document}
\noindent
\newpage
\tableofcontents

\newpage
\input{maintext.tex}

\nocite{*}
\bibliography{testbib}
\bibliographystyle{plain}
\addcontentsline{toc}{chapter}{References}

\end{document}

这是.bib 文件:

@book{Hesp, author = "J. P. Hespanha", title = "Linear Systems Theory", publisher = "Princeton", year = "2009", }

这是用作输入的文本文件

\chapter{main}
this is the main text \cite{Hesp}

相关内容