エディタ TeXnicCenter を使用して LaTeX の参考文献を更新する方法

エディタ TeXnicCenter を使用して LaTeX の参考文献を更新する方法

私は論文を書いています。メイン ファイルのコードは以下の通りです。このファイルを実行すると、PDF ドキュメントが生成されますが、.bib ファイルは開きません。エラー メッセージは次のようになります。

I didn't find database entry for "test1"

testbibは参考文献を含む .bib ファイルの名前で、test1は引用の名前です。私は LaTeX ツールとして MiKTeX と TeXnicCenter を使用しています。私の質問がより明確になったと思います。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}. 

関連情報