[Tex/LaTex] When bibtex does not find bibdata inside aux file, with code

bibliographiesbibtex

I am receiving the following error message

This is BibTeX, Version 0.99d (TeX Live 2014)
The top-level auxiliary file: thesis.aux
I found no \bibdata command---while reading file thesis.aux
I found no \bibstyle command---while reading file thesis.aux
(There were 2 error messages)

I am wonderinf why that could be. I am using

\usepackage[sort]{natbib} 

for my bibliography and the following commands to create it

\bibliographystyle{ecta}
\makeatletter
\renewcommand\@biblabel[1]{\hspace*{\labelwidth}}
\apptocmd{\NAT@thebibliography}{\setlength\itemindent{-14pt}}{}{}
\makeatother

\bibliography{/Users/myname/Dropbox/Bibliography/bibo}

and the strange thing is that it had been working a few hrs. ago. I am not sure what changed.

Does someone know what could the problem?

Thank you very much!

Best Answer

Presumably latex never reached

\bibliography{/Users/myname/Dropbox/Bibliography/bibo} 

a misplaced \end{document} for example would do that.

Related Question