Add abstract and subtitle to opendocument template.

With prior changes, this closes #6369.
This commit is contained in:
John MacFarlane 2020-05-16 14:39:52 -07:00
parent bde3d7622d
commit f11b8ff080

View file

@ -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$