I'm using biblatex to print my bibliography at the end of my thesis but unfortunately nothing is printed at the end (not even a blank page).
Here's an example of what I'm using:
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{biblatex}
\addbibresource{references.bib}
\begin{document}
I'm goint to cite the first reference with \cite{einstein}.
\printbibliography
\end{document}
Here's what my .bib file looks like:
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004",
keywords = "physics"
}
@book{dirac,
title={The Principles of Quantum Mechanics},
author={Paul Adrien Maurice Dirac},
isbn={9780198520115},
series={International series of monographs on physics},
year={1981},
publisher={Clarendon Press},
keywords = {physics}
}
What might be the problem?

bibtexcommand ? – Cfun Jul 07 '16 at 12:33pdflatex -> biber -> pdflatex (twice)? – Bernard Jul 07 '16 at 12:34.blgfile (the log file Biber writes). Just paste its contents to your question. – moewe Jul 07 '16 at 14:50.blbfile. – Ulrike Fischer Jul 07 '16 at 14:52biblatexand Biber are out of sync. You need to do an update. Since you are running MikTeX you will have to run the Updater in Admin and in User mode (you may have to run both of the updaters twice). See also How should one maintain and update a MiKTeX installation? – moewe Jul 07 '16 at 15:15