diff options
Diffstat (limited to 'default.docbook5')
-rw-r--r-- | default.docbook5 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/default.docbook5 b/default.docbook5 new file mode 100644 index 0000000..b2c4079 --- /dev/null +++ b/default.docbook5 | |||
@@ -0,0 +1,37 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <!DOCTYPE article> | ||
3 | <article | ||
4 | $if(lang)$ | ||
5 | xml:lang="$lang$" | ||
6 | $endif$ | ||
7 | xmlns="http://docbook.org/ns/docbook" version="5.0" | ||
8 | $if(mathml)$ | ||
9 | xmlns:mml="http://www.w3.org/1998/Math/MathML" | ||
10 | $endif$ | ||
11 | xmlns:xlink="http://www.w3.org/1999/xlink" > | ||
12 | <info> | ||
13 | <title>$title$</title> | ||
14 | $if(subtitle)$ | ||
15 | <subtitle>$subtitle$</subtitle> | ||
16 | $endif$ | ||
17 | $if(author)$ | ||
18 | <authorgroup> | ||
19 | $for(author)$ | ||
20 | <author> | ||
21 | $author$ | ||
22 | </author> | ||
23 | $endfor$ | ||
24 | </authorgroup> | ||
25 | $endif$ | ||
26 | $if(date)$ | ||
27 | <date>$date$</date> | ||
28 | $endif$ | ||
29 | </info> | ||
30 | $for(include-before)$ | ||
31 | $include-before$ | ||
32 | $endfor$ | ||
33 | $body$ | ||
34 | $for(include-after)$ | ||
35 | $include-after$ | ||
36 | $endfor$ | ||
37 | </article> | ||