diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-05-16 14:39:52 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-05-16 14:40:15 -0700 |
commit | f11b8ff0801bab83f3b050557fc195af78c46621 (patch) | |
tree | e004d8cc9c6405fcc2d6a1f2fe78b00ac50abb38 /data/templates/default.opendocument | |
parent | bde3d7622ddd2cda7adabc309335bb2865c1d520 (diff) | |
download | pandoc-f11b8ff0801bab83f3b050557fc195af78c46621.tar.gz |
Add abstract and subtitle to opendocument template.
With prior changes, this closes #6369.
Diffstat (limited to 'data/templates/default.opendocument')
-rw-r--r-- | data/templates/default.opendocument | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/default.opendocument b/data/templates/default.opendocument index cc7d33002..e34c8d500 100644 --- a/data/templates/default.opendocument +++ b/data/templates/default.opendocument @@ -14,12 +14,18 @@ $endfor$ $if(title)$ <text:p text:style-name="Title">$title$</text:p> $endif$ +$if(subtitle)$ +<text:p text:style-name="Subtitle">$subtitle$</text:p> +$endif$ $for(author)$ <text:p text:style-name="Author">$author$</text:p> $endfor$ $if(date)$ <text:p text:style-name="Date">$date$</text:p> $endif$ +$if(abstract)$ +$abstract$ +$endif$ $for(include-before)$ $include-before$ $endfor$ |