0

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.

3

1 Answer 1

3

Welcome, you could use biber:

\documentclass{article} \usepackage[utf8]{inputenc} \usepackage[english]{babel} \usepackage[style=authoryear, backend=biber]{biblatex} \addbibresource{bibliography.bib} %your bibliography name \usepackage{csquotes} \begin{document} Test test \cite{ref-key} \printbibliography %Your bibliography \end{document} 

then run

pdflatex <your file> biber <your file> pdflatex <your file> pdflatex <your file> 

on you folder

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.