TransWikia.com

All the citations in the references are being numbered as '0' in ArXiv while uploading from Overleaf

TeX - LaTeX Asked by saha rudra on February 23, 2021

I compiled the latex source code from overleafv2 using the submit for arXiv tab and I am using this downloaded zip file for my submission. The pdf preview of the submission shows all of the references with the same count of ‘0’. I am using biblatex package for references. Not sure where the problem exists so any suggestions are welcomed.

EDIT 1:

Output of ArXiv:
The submission processed ok. Please find the link for the arXiv output.
https://docs.google.com/document/d/12uoDIo0JePOjZ_5Ul3huuRwt8QZ3Ix7FPhkJCFERdY0/edit?usp=sharing

Output of Overleaf:
There are a lot of Overfull and Underfull warnings and a couple of others. From what I see, it doesn’t have any issues related to the bibliography. Please find the link for the overleaf output.
https://docs.google.com/document/d/1yKgqkmkQmdeb_S8CFJLrAAKvxIerFPJZLdJ_PD3YqI0/edit?usp=sharing

One Answer

As confirmed in the comments your project uses defernumbers. With that option the label number for an entry is not assigned at the beginning of the document when the entry data is read from the .bbl file, instead the label number is assigned only once the entry is printed in the bibliography. Consider the following example with and without defernumbers

documentclass[british]{article}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}

usepackage[style=numeric, defernumbers, backend=biber]{biblatex}

addbibresource{biblatex-examples.bib}


begin{document}
cite{sigfridsson,moraux,worman,nussbaum,geer,cicero}
printbibliography[keyword=secondary]
printbibliography[notkeyword=secondary]
end{document}

For defernumbers to work properly the compilation cycle must include

  1. LaTeX (in the resulting PDF all cite keys are bold)
  2. Biber
  3. LaTeX (in the resulting PDF all citations are 0)
  4. LaTeX (in the resulting PDF all citations show up)

If an appropriate .bbl is already present (i.e. if you compile the example from above as just described and then delete all files except the .tex and .bbl file) the compilation cycle still (perhaps unexpectedly) needs to include three LaTeX runs

  1. LaTeX (in the resulting PDF all citations are 0)
  2. LaTeX (in the resulting PDF all citations are 0)
  3. LaTeX (in the resulting PDF all citations show up)

That is because biblatex's heuristic to determine whether a Biber run is required will request a Biber run in the first LaTeX compilation. If a Biber run is requested, a few auxiliary bits are not written out to the .aux file in the anticipation that a subsequent requested Biber run could potentially change the relevant information anyway. This means that relevant data is only written to the .aux file on the second LaTeX run, when biblatex has given up asking for a new Biber run.

The log files of your arXiv submission show that the arXiv only runs LaTeX twice, hence you get only 0s instead of the proper citation labels.

The relevant information for defernumbers lives in the .aux file. It might be possible to upload the .aux file to the arXiv as well (I'm not sure if they accept that or will automatically reject .aux uploads; uploaded .aux files might cause version or other package incompatibilities) in which case you would obtain the desired result after only one LaTeX run. This solution is more of a last resort.

A different and better solution would be to tell LaTeX not to ask for a Biber run at all when you upload a file to the arXiv. Just add

makeatletter
letblx@rerun@biberrelax
makeatother

to your preamble. Since the arXiv won't run Biber for you anyway, there is no point in having biblatex request a Biber run. In this instance we bypass a few tests that would block information subject to change after a Biber run from being written to the .aux file. In the end then two LaTeX runs should be enough for your citations to show up properly.

Correct answer by moewe on February 23, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP