What is wrong with my code? It doesn't compile!
I use Zotero to gather my references. I exported the references from Zotero as biblatex file, and I used this code and It doesn't compile!
\documentclass{article} \usepackage[utf8]{inputenc} \usepackage[english]{babel} \usepackage{biblatex} \addbibresource{References.bib} \begin{document} \printbibliography \end{document} It tells me: "empty bibliography", and the bib file is not empty.
biber?biberwhich is necessary. The bib file is just a source for references, they're not automatically added to any bibliography, you most likely want\nocite{*}for that (tex.stackexchange.com/a/17132/106162)