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? – Mico Mar 28 '24 at 23:31biberwhich 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 (https://tex.stackexchange.com/a/17132/106162) – Dai Bowen Mar 29 '24 at 00:56