Estou escrevendo minha tese. Eu tenho um código de arquivo principal fornecido abaixo. Quando executo este arquivo, ele produz um documento PDF. mas não abre o arquivo .bib. O erro diz:
I didn't find database entry for "test1"
testbib
é o nome do meu arquivo .bib contendo referências e test1
é o nome da citação. Estou usando MiKTeX e TeXnicCenter como ferramentas LaTeX. Espero ter deixado minha pergunta mais clara. Eu tentei o TeXstudio, mas o mesmo problema. Pode ser que esteja faltando alguma coisa?
aqui está o código para .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}
aqui está o código do meu arquivo principal.
\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}
arquivo de amostra para introdução onde devo adicionar uma citação.
\chapter{\textbf{INTRODUCTION}}
\section{Background}
Channel Modeling is a vast concept. It can be used in many communication systems\cite{test1}.