I'm compiling my PhD dissertation in ShareLaTeX and today was my first, "Oh no!" moment. I followed lockstep's guide to switching to biblatex. Seemed very clear and straightforward. After commenting out the bibtex command I added the necessary pre-amble to my document. My pre-amble currently looks like this:
\documentclass[12pt,twoside]{report}
\usepackage{appendix}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[byname]{smartref}
\usepackage{hyperref}
\usepackage{txfonts}
\usepackage{tocloft}
\usepackage{csquotes}
\usepackage[backend=bibtex, citestyle=authoryear]{biblatex}
\addbibresource{thesis.bib}
After this material I have the document and the bibliography commands:
\begin{document}
This contains an error that says: "Package biblatex error: File output.bbl not created by biblatex.
\printbibliography
This contains an error that says empty bibliography on input line 162.
\end{document}
I've thoroughly researched proposed solutions. I tried to paste code from this ShareLaTeX template but it didn't work for me---in fact my document wouldn't compile at all.
What I might do next if I don't hear from anyone is try to rebuild based on the ShareLaTeX template. Ugh I don't have time for this.
Help!
Cheers,
Allan
Edit: added tags
backend=biber. Also it is very unusual to set only acitestyleand nobibstyle, maybe just go withstyle=authoryear. And please give a full MWE so we can examine what is going on - but make it minimal. – moewe Sep 01 '15 at 05:15