diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 09:29:34 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 09:29:34 -0800 |
commit | ac3dc50580d7185d18dd4916782904fd733b3bfd (patch) | |
tree | 23ec8e7c0c0806fde9a07a1b1d271b814343daf8 /default.docbook4 | |
parent | e7d5d8957c77e125b8a1c7eb51356542633d0796 (diff) | |
download | pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.tar.gz pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.zip |
Initial commit, 2.0.5
Diffstat (limited to 'default.docbook4')
-rw-r--r-- | default.docbook4 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/default.docbook4 b/default.docbook4 new file mode 100644 index 0000000..5313c40 --- /dev/null +++ b/default.docbook4 | |||
@@ -0,0 +1,32 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | $if(mathml)$ | ||
3 | <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook EBNF Module V1.1CR1//EN" | ||
4 | "http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd"> | ||
5 | $else$ | ||
6 | <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" | ||
7 | "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> | ||
8 | $endif$ | ||
9 | <article> | ||
10 | <articleinfo> | ||
11 | <title>$title$</title> | ||
12 | $if(author)$ | ||
13 | <authorgroup> | ||
14 | $for(author)$ | ||
15 | <author> | ||
16 | $author$ | ||
17 | </author> | ||
18 | $endfor$ | ||
19 | </authorgroup> | ||
20 | $endif$ | ||
21 | $if(date)$ | ||
22 | <date>$date$</date> | ||
23 | $endif$ | ||
24 | </articleinfo> | ||
25 | $for(include-before)$ | ||
26 | $include-before$ | ||
27 | $endfor$ | ||
28 | $body$ | ||
29 | $for(include-after)$ | ||
30 | $include-after$ | ||
31 | $endfor$ | ||
32 | </article> | ||