From ba64240f2c99c1f75557f2dae6c4022e1178297c Mon Sep 17 00:00:00 2001 From: Mickaƫl Canouil <8896044+mcanouil@users.noreply.github.com> Date: Thu, 23 Oct 2025 11:31:57 +0200 Subject: Typst template: fix syntax for bibliography inclusion (#11233) Previously the syntax was wrong when multiple bibliography files were specified. Typst expects an array. --- data/templates/default.typst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/templates/default.typst b/data/templates/default.typst index 651bc6d9c..8141096c3 100644 --- a/data/templates/default.typst +++ b/data/templates/default.typst @@ -149,7 +149,7 @@ $elseif(bibliographystyle)$ $endif$ $if(bibliography)$ -#bibliography($for(bibliography)$"$bibliography$"$sep$,$endfor$$if(full-bibliography)$, full: true$endif$) +#bibliography(($for(bibliography)$"$bibliography$"$sep$,$endfor$)$if(full-bibliography)$, full: true$endif$) $endif$ $endif$ $for(include-after)$ -- cgit v1.2.3