[Tex/LaTex] Biblatex not printing bibliography

biberbiblatexbibtextexmaker

I cannot manage to print bibliography with Biblatex, and \cite{XXX} just provides XXX in text.

Here a MWE:

\documentclass{memoir}

\usepackage{lipsum}
\usepackage[style=ieee,backend=bibtex]{biblatex}
\addbibresource{bibliography.bib}

\begin{document}

\chapter{blablabla}
\lipsum[1-2] \cite{Campbell2004}

\end{document}

Bibliography.bib:

@book{Morgan2005,
author = {Morgan, Peter},
isbn = {978-0-8247-0983-9},
issn = {0-8247-0983-7},
publisher = {Taylor {\&} Francis Group, LLC},
title = {{Carbon fibers and their composites}},
year = {2005}
}

I'm using MiKTeX portable 2.9, Texmaker 4.5. Already tried:

  • Using biber and bibtex as backend;
  • Cleaning temp files;
  • Already running pdflatex -> Bib(la)tex -> pdflatex (x2);
  • bibliography.bib is already a part of the structure and provides quick link.

Output:
enter image description here

Best Answer

After all @UlrikeFischer was right.

Texmaker still was trying to find the aux file in the directory /build, even with that option disabled. Had to manually delete that in Options.

Thank you very much!