I'm trying to add a bibliography, using biblatex, but when I compile with texmaker I just get many warnings saying all the citations are undefined.
Briefly, here is how my project is structured:
Dissertate.cls
...
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{references.bib}
...
\renewcommand{\backmatter}{
\bibpage
}
...
\newcommand{\bibpage}{
...
\printbibliography
}
references.bib
@inbook{Wilson001,
author = {Wilson J.},
title = {Some title},
...
}
dissertation.tex
\documentclass{Dissertate}
\begin{document}
...
\include{mainmatter/chapters/chapter1}
\backmatter
...
\end{document}
chapter1.tex
\chapter{First Chapter}
Here I'm going to add a citation \cite{Wilson001}. ...
The warning I get is, for example: Citation 'Wilson001' on page 1 undefined. What am I missing?
.blgfile. If there is no new development here in due time I will vote to close this question as duplicate of the "configure your editor for Biber" question. – moewe May 08 '20 at 07:13