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}. 

관련 정보