My output looks fine. However there are the following warnings when compiling a document with references inside a table, when using TexLive. With MikTex this warnings will not occure:
There were undefined references.
Please (re)run Biber on the file: minimalexample and rerun LaTeX afterwards.
Here is a minimal example:
\documentclass[preview]{standalone}
\usepackage{luatex85,tabularx}
\usepackage[style=numeric-comp,backend=biber,sorting=none,maxbibnames=99]{biblatex}
\addbibresource{references.bib}
\begin{document}
\begin{table}
\centering
\begin{tabularx}{\linewidth}{c}
\cite{reference} \
\end{tabularx}
\end{table}
\printbibliography
\end{document}
The appropriate bib-file is:
@article{reference,
title={Reference Title},
author={Name, S.},
journal={Journal},
volume={1},
number={1},
pages={1},
year={2011},
publisher={Publisher}
}
Is there a mistake in my code or could it be a bug?
Edit: The Biber log file is:
[0] Config.pm:304> INFO - This is Biber 2.12
[0] Config.pm:307> INFO - Logfile is 'minimalexample.blg'
[24] biber:315> INFO - === Fr Feb 5, 2021, 23:31:16
[46] Biber.pm:371> INFO - Reading 'minimalexample.bcf'
[106] Biber.pm:889> INFO - Found 1 citekeys in bib section 0
[119] Biber.pm:4093> INFO - Processing section 0
[131] Biber.pm:4254> INFO - Looking for bibtex format file 'biblatex-examples.bib' for section 0
[139] bibtex.pm:1512> INFO - LaTeX decoding ...
[362] bibtex.pm:1329> INFO - Found BibTeX data source 'biblatex-examples.bib'
[386] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized'
[387] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable'
[387] Biber.pm:3921> INFO - Sorting list 'none/global//global/global' of type 'entry' with template 'none' and locale 'en-US'
[387] Biber.pm:3927> INFO - No sort tailoring available for locale 'en-US'
[389] bbl.pm:636> INFO - Writing 'minimalexample.bbl' with encoding 'UTF-8'
[390] bbl.pm:739> INFO - Output to minimalexample.bbl
biblatex3.12, I think this is basically the same issue as https://tex.stackexchange.com/q/468475/35864 (minus thedefernumbers=true,which just makes the issue more apparent). You could try the workaround suggested there, but maybe it is time to get a vanilla TeX live with the current updates (https://tex.stackexchange.com/q/1092/35864). – moewe Feb 06 '21 at 06:31defernumbers=true,): I checked that I could reproduce the behaviour withbiblatex3.12 and that the workaround suggested in https://tex.stackexchange.com/q/468475/35864 or an update tobiblatex3.13 resolve the issue. – moewe Feb 06 '21 at 06:49