From 1b52baaf37bddf019d8c11fc1eb433b594f341fa Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 3 Jul 2023 08:24:01 -0700 Subject: Typst writer: consolidate bibliography files... into one `#bibliography` command. (Separate bibliographies are not possible.) Closes #8937. --- data/templates/default.typst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/templates/default.typst b/data/templates/default.typst index 67cbaf4f1..7b3fd0d41 100644 --- a/data/templates/default.typst +++ b/data/templates/default.typst @@ -87,10 +87,10 @@ $if(bibliographystyle)$ #set bibliography(style: "$bibliographystyle$") $endif$ -$for(bibliography)$ +$if(bibliography)$ -#bibliography("$bibliography$") -$endfor$ +#bibliography($for(bibliography)$"$bibliography$"$sep$,$endfor$) +$endif$ $endif$ $for(include-after)$ -- cgit v1.2.3