如何使用编辑器 TeXnicCenter 更新 LaTeX 中的参考书目

如何使用编辑器 TeXnicCenter 更新 LaTeX 中的参考书目

我正在写论文。我有一个主文件代码,如下所示。当我运行此文件时,它会生成 pdf 文档。但它不会打开 .bib 文件。错误显示:

I didn't find database entry for "test1"

testbib是包含参考文献的 .bib 文件的名称,test1是引文的名称。我使用 MiKTeX 和 TeXnicCenter 作为 LaTeX 工具。我希望我的问题表达得更清楚。我试过 TeXstudio,但问题依然存在。可能是我遗漏了什么?

这是 .bibfile 的代码

\usepackage{filecontents} \begin{filecontents}{testbib.bib}
 @Book{test1, author = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander}, title = {The LaTeX Companion}, publisher = {Addison-Wesley}, location = {Reading, Mass.}, year = {1994}, } \end{filecontents}

这是我的主文件的代码。

\documentclass[???]{???}
%\input{preamble}
\begin{document}

%\input{Sections/Title}  % etc. deleted other \input's

\tableofcontents
\listoffigures
\listoftables

%\input{Sections/Introduction} % deleted other \input's
\cite{6691866}    

\bibliographystyle{ieeetr}
\bibliography{References_ZAIN}

%\input{Sections/Thesis}
\end{document}

我必须添加引用的介绍示例文件。

\chapter{\textbf{INTRODUCTION}}
\section{Background}

Channel Modeling is a vast concept. It can be used in many communication systems\cite{test1}. 

相关内容