如何使用編輯器 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}. 

相關內容