My citations were printing fine on an academic article I'm about to submit, running TexShop on a Mac, and then suddenly they wouldn't anymore. To troubleshoot, I deleted the last few citations I added, both to the text and to the .bib file. Now I discovered I can't even get a simple bibliography to print for anything to work now on old papers, or for this minimum (non-) working example.
I get an error: "LaTeX Warning: There were undefined references."
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@ARTICLE{example,
author = {Other, Anthony Norman},
title = {Some things I did},
year = {2014},
journal = {J.~Irrep. Res.},
volume = {1},
number = {1},
pages = {1-10}
}
\end{filecontents*}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
Hello\cite{example}
\printbibliography
\end{document}
^I do not get a bibliography from this example. I have set up my editor to run biber (see screenshot below), which was the answer to someone else having this exact problem.
I also realize I need to first run latex, and then bibtex, and then latex twice more.
Lastly, as per a helpful commenter, here is the .blg file.


.blgfile. Open that file (it is a simple text file) and add its complete content to the question. – moewe Dec 10 '22 at 07:28.blgfile is not complete. It should also have a lineINFO - Output to XXX.bbl. Usually that means that the cache is damaged. This is an especially common appearance on Mac OS. If this problem appears the next time, delete the cache as described in https://tex.stackexchange.com/q/140814/35864, then rerun (the following run might take longer than usual, just let it finish). – moewe Dec 10 '22 at 22:25