aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickaël Canouil <[email protected]>2025-10-23 11:31:57 +0200
committerGitHub <[email protected]>2025-10-23 11:31:57 +0200
commitba64240f2c99c1f75557f2dae6c4022e1178297c (patch)
treee988e2a08a0f0ff8192a3add80c3253d35e2a058
parent09c9be2c12c50bc4a6a590fb43b92eb67758af94 (diff)
Typst template: fix syntax for bibliography inclusion (#11233)
Previously the syntax was wrong when multiple bibliography files were specified. Typst expects an array.
-rw-r--r--data/templates/default.typst2
1 files changed, 1 insertions, 1 deletions
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)$