I downloaded the cleanthesis template and run LaTeX on thesis-example.tex which created an .aux file. In the document one finds
\nocite{*}
\printbibliography[nottype=online]
\printbibliography[heading=subbibliography,title={Webseiten},type=online,prefixnumbers={@}]
such that BibTeX should generate a .bbl file. But if I run bibtex, it just says
This is BibTeX, Version 0.99d (TeX Live 2012)
The top-level auxiliary file: thesis-example.aux
I found no \citation commands---while reading file thesis-example.aux
I found no \bibdata command---while reading file thesis-example.aux
I found no \bibstyle command---while reading file thesis-example.aux
(There were 3 error messages)
and just leaves an empty .bbl file for me. I checked cleanthesis.sty and found
\bibliography{bib-refs}
which is infact the correct .bib file.
I then deleded the command \nocite{*} and put some where in the text \cite{WEB:GNU:GPL:2010} after compiling with LaTeX I could find in the .aux file the command
\abx@aux@cite{WEB:GNU:GPL:2010}
but if I run bibtex I get the same message from above and an empty bbl file.
Am I doing anything wrong?