I'm writing my thesis with my friend but I'm having serious problems getting biblatex to work with ShareLaTeX, it apparently has support (according to this blog: http://www.clarusft.com/sharelatex/).
However, I can't get it to work properly, or at all to be honest.
I have included this in the top.
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber]{biblatex} % I try to use biber.
\bibliography{ref} % the ref.bib file
\begin{document}
Hi there, Stackoverflowers\cite{lol}
\printbibliography
\end{document}
And here is my ref.bib file:
@article
{lol,
author = "Anders Ekholm",
title = "Den ljusnande framtid är vård",
year = "2010"
}
This doesn't work.
I get the errors:
main.tex:55 Citation 'lol' on page 1 undefined.
main.tex:274 Empty bibliography.
undefined:undefined There were undefined references.
undefined:undefined [biblatex] Please (re)run Biber on the file: output and rerun LaTeX afterwards. (page 23)
backend=bibtexit works. – m0nhawk Mar 14 '13 at 11:09