summaryrefslogtreecommitdiff
path: root/data/templates/default.typst
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/default.typst')
-rw-r--r--data/templates/default.typst17
1 files changed, 10 insertions, 7 deletions
diff --git a/data/templates/default.typst b/data/templates/default.typst
index 55864de92..935ae602c 100644
--- a/data/templates/default.typst
+++ b/data/templates/default.typst
@@ -23,19 +23,22 @@ $if(author)$
authors: (
$for(author)$
$if(author.name)$
- ( name: [$author.name$],
- affiliation: [$author.affiliation$],
- email: [$author.email$] ),
+ ( name: "$author.name$",
+ affiliation: "$author.affiliation$",
+ email: "$author.email$" ),
$else$
- ( name: [$author$],
- affiliation: [],
- email: [] ),
+ ( name: "$author$",
+ affiliation: "",
+ email: "" ),
$endif$
$endfor$
),
$endif$
+$if(keywords)$
+ keywords: ($for(keywords)$$keyword$$sep$,$endfor$),
+$endif$
$if(date)$
- date: [$date$],
+ date: "$date$",
$endif$
$if(lang)$
lang: "$lang$",