diff options
| author | Mickaël Canouil <[email protected]> | 2025-10-23 11:31:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-23 11:31:57 +0200 |
| commit | ba64240f2c99c1f75557f2dae6c4022e1178297c (patch) | |
| tree | e988e2a08a0f0ff8192a3add80c3253d35e2a058 /data | |
| parent | 09c9be2c12c50bc4a6a590fb43b92eb67758af94 (diff) | |
Typst template: fix syntax for bibliography inclusion (#11233)
Previously the syntax was wrong when multiple bibliography files were
specified. Typst expects an array.
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/default.typst | 2 |
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)$ |
