You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been playing around with the toolkit lately, and for containers created with the toolkit it seems like biber is not working. I also found a solution, please consider including it as fix into future versions.
%% ##############################
\begin{document}
Lorem ipsum dolor sit amet~\citep{kastenholz}.
At vero eos et accusam et justo duo dolores et ea rebum~\citet{sigfridsson}.
\printbibliography
\end{document}
biblatex-examples.bib is the example file coming with TeXlive 2024, you can also find it here.
This does work with my local vscode setup, but not with overleaf instances created with the toolkit. However, it will work also with said overleaf instance, if the following command is executed inside the container first: ln -s /usr/local/texlive/2024/bin/x86_64-linux/biber /usr/local/bin/biber
Now if all cached files are cleared and the document is compiled again it'll work as expected.
Hi,
I've been playing around with the toolkit lately, and for containers created with the toolkit it seems like biber is not working. I also found a solution, please consider including it as fix into future versions.
MWE:
\documentclass[]{article}
\usepackage[autostyle]{csquotes}
\usepackage[
backend=biber,
style=authoryear-icomp,
sortlocale=de_DE,
natbib=true,
url=false,
doi=true,
eprint=false
]{biblatex}
\addbibresource{biblatex-examples.bib}
\usepackage[]{hyperref}
\hypersetup{
colorlinks=true,
}
%% ##############################
\begin{document}
Lorem ipsum dolor sit amet~\citep{kastenholz}.
At vero eos et accusam et justo duo dolores et ea rebum~\citet{sigfridsson}.
\printbibliography
\end{document}
biblatex-examples.bib is the example file coming with TeXlive 2024, you can also find it here.
This does work with my local vscode setup, but not with overleaf instances created with the toolkit. However, it will work also with said overleaf instance, if the following command is executed inside the container first:
ln -s /usr/local/texlive/2024/bin/x86_64-linux/biber /usr/local/bin/biber
Now if all cached files are cleared and the document is compiled again it'll work as expected.
References:
The text was updated successfully, but these errors were encountered: