During the submission process on arXiv, arXiv does not compile my bibliography. Some lines of its output:
Processing Status: Succeeded with warnings. We recommend that you inspect the log (see below).
LaTeX Warning: Citation 'xxx' on page 22 undefined on input line 1453.
LaTeX Warning: Empty bibliography on input line 1601.
LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:
[verbose]: WARNING: Reached max number of passes, possibly failed to get CROSS-REFERENCES right.
And indeed, in the generated pdf, references do not appear. But it works correctly on my computer. Do you have any idea why arXiv fails ? My tex file is as follows:
\documentclass[11pt]{article}
...
\usepackage[backend=biber,style=alphabetic,sorting=nyt]{biblatex}
\renewbibmacro{in:}{}
...
\begin{filecontents*}[overwrite]{xxx.bib}
...
\end{filecontents*}
\addbibresource{xxx.bib}
...
\begin{document}
...
\printbibliography
\end{document}
I tried removing the [overwrite] but the result stays the same. I do not have a \usepackage{hyperref}, even in a commented line, or other "hyper" or "ref" package. Thanks in advance.
.bblfile, not the.bibfile. The.bblfile has tight version dependencies with yourbiblatexpackage version, so you need to make sure that yourbiblatexversion and the arXiv version are compatible. See https://tex.stackexchange.com/q/429436/35864 and linked posts. – moewe Feb 21 '22 at 19:50