I have written a few reports using Overleaf but I have never used XeLaTex or Texmaker before. Now I have the problem that my citations are not showing up in the final document.
This is the basic setup, main.tex:
\documentclass[a4paper, 11pt]{report}
\usepackage[backend=biber, style=nature]{biblatex}
\addbibresource{references.bib}
\begin{document}
\renewcommand{\bibname}{References}
\chapter{One}
\input{Chapters/One.tex}
%This file includes a citation: Text text text \cite{Someone2020}.
\begin{spacing}{1}
\printbibliography[heading=bibintoc]
\end{spacing}
\end{document}
I only get the errors "Citation "Someone2020" on page 1 undefined" for Chapters/One.tex and for main.tex "Package biblatex Warning: Please (re)run Biber on the file". No bibliography is printed. The file references.bib is in the same directory as the main.tex file and the Chapters/One.tex folder/file. It includes the citation bla2020.
I have the feeling this has got to do with the way Texmaker is set up. I need to use XeLaTex and changing the configuration of Texmaker to "biber" % for Bib(la)tex did not make it work.
How do I run biber on the file as suggested by the error message? Could someone explain how to solve this problem for absolute beginners?
This question sadly doesn't help me with the knowledge I have how to compile bibtex file using texmaker and XeLaTeX.
Thank you a lot!
biber %already looks quite good, but double check with the instructions from the link. Depending on how you editor is set up (and its heuristics if applicable), you may still have to tell your editor when to run Biber so that you indeed get the required LaTeX, Biber, LaTeX, LaTeX compilation cycle. How this is done depends on your editor and to some degree on your operating system, refer to the link before and to the documentation of your editor. ... – moewe Dec 05 '20 at 08:08.logfile, for the Biber run check the.blgfile. More details and more hints can be found in https://tex.stackexchange.com/q/286706/35864 – moewe Dec 05 '20 at 08:09