I want to write my thesis with latex but the first section already causes problems with the references. I used RefWorks for my citation and exported the file to my computer (same folder as the main document). I also have a second file (Material&Methods) which I included via \include. I am using the natbib package and when I compile the document with Texniccenter I get the message "natbib warning: Citation Refworks:45 on page 2 undefined in input line 3. The references are cited with \citet
Here is the minimal code from my main file:
Code: Select all
\documentclass{report}
\usepackage{natbib}
\usepackage{textcomp}
%__________________________________
\begin{document}
\chapter{Chapter 1}
\include{Material&Methods}
\bibstyle{plainnat}
\bibliography{bib}
\end{document
However, the text from the file is included in the compiling process, it just leaves out the references.
I tried to find a solution on google but wasn't successful with it, so hope someone can help. Thanks.