I'm a new user and am trying to use biblatex to cite in LaTeX. Currently all my code is giving me is my citation put in to my text as my bibtexkey in brackets, or nothing at all. It is also not forming a bibliography. I build LaTeX-->PDF, followed by LaTeX--> bibtex , and then LaTeX-->PDF again. The .bib file has inserted and a .bbl file created. I'm using JabRef to manage my references. I don't understand where I am going wrong. Below is my minimal example.
\documentclass {report}
\usepackage[backend=biber,
style=authoryear,
maxcitenames=2,
sorting=nyt,
backref=true]{biblatex}
\bibliography{refs}
\let\cite\parencite
\begin{document}
Just to check referencing \citation{Bian2008}
\printbibliography
\enddocument
backend=biber(which is default forbiblatex), so you either have to runbiberinstead ofbibtex, or switch tobackend=bibtex. There are instructions for setting up various editors to runbiberin Biblatex with Biber: Configuring my editor to avoid undefined citations. – Torbjørn T. Feb 12 '14 at 13:02backend=bibtexinstead, and runbibtexas you tried earlier? – Torbjørn T. Feb 12 '14 at 14:23.styfile, it's a separate program you run – Joseph Wright Feb 12 '14 at 14:55