diff options
-rw-r--r-- | README.md | 51 | ||||
-rw-r--r-- | default.asciidoc | 35 | ||||
-rw-r--r-- | default.commonmark | 21 | ||||
-rw-r--r-- | default.context | 143 | ||||
-rw-r--r-- | default.docbook4 | 32 | ||||
-rw-r--r-- | default.docbook5 | 37 | ||||
-rw-r--r-- | default.dokuwiki | 13 | ||||
-rw-r--r-- | default.dzslides | 204 | ||||
-rw-r--r-- | default.epub2 | 69 | ||||
-rw-r--r-- | default.epub3 | 70 | ||||
-rw-r--r-- | default.haddock | 1 | ||||
-rw-r--r-- | default.html4 | 70 | ||||
-rw-r--r-- | default.html5 | 73 | ||||
-rw-r--r-- | default.icml | 43 | ||||
-rw-r--r-- | default.jats | 203 | ||||
-rw-r--r-- | default.latex | 403 | ||||
-rw-r--r-- | default.man | 30 | ||||
-rw-r--r-- | default.markdown | 21 | ||||
-rw-r--r-- | default.mediawiki | 13 | ||||
-rw-r--r-- | default.ms | 108 | ||||
-rw-r--r-- | default.muse | 44 | ||||
-rw-r--r-- | default.opendocument | 161 | ||||
-rw-r--r-- | default.opml | 11 | ||||
-rw-r--r-- | default.org | 24 | ||||
-rw-r--r-- | default.plain | 21 | ||||
-rw-r--r-- | default.revealjs | 272 | ||||
-rw-r--r-- | default.rst | 48 | ||||
-rw-r--r-- | default.rtf | 30 | ||||
-rw-r--r-- | default.s5 | 92 | ||||
-rw-r--r-- | default.slideous | 96 | ||||
-rw-r--r-- | default.slidy | 82 | ||||
-rw-r--r-- | default.tei | 39 | ||||
-rw-r--r-- | default.texinfo | 64 | ||||
-rw-r--r-- | default.textile | 9 | ||||
-rw-r--r-- | default.zimwiki | 16 |
35 files changed, 2647 insertions, 2 deletions
@@ -1,2 +1,49 @@ | |||
1 | # pandoc-templates | 1 | The [pandoc-templates] repository contains default templates for [pandoc]. |
2 | Templates for pandoc, tagged to release | 2 | |
3 | If you use custom templates, we recommend forking this | ||
4 | repository, so that you can integrate changes to the default | ||
5 | templates in future pandoc releases. | ||
6 | |||
7 | This repository is a subtree of [pandoc]; it will be updated | ||
8 | each time there is a new pandoc release. However, changes to | ||
9 | templates are made first in [pandoc]; thus, issues and pull | ||
10 | requests should be made [pandoc]'s issue tracker rather than | ||
11 | here. | ||
12 | |||
13 | [pandoc]: https://github.com/jgm/pandoc | ||
14 | [pandoc-templates]: https://github.com/jgm/pandoc-templates | ||
15 | |||
16 | All of the templates in this repository are dual licensed, under both | ||
17 | the GPL (v2 or higher, same as pandoc) and the BSD 3-clause license | ||
18 | (included below). | ||
19 | |||
20 | Copyright (c) 2014--2017, John MacFarlane | ||
21 | |||
22 | All rights reserved. | ||
23 | |||
24 | Redistribution and use in source and binary forms, with or without | ||
25 | modification, are permitted provided that the following conditions are met: | ||
26 | |||
27 | * Redistributions of source code must retain the above copyright | ||
28 | notice, this list of conditions and the following disclaimer. | ||
29 | |||
30 | * Redistributions in binary form must reproduce the above | ||
31 | copyright notice, this list of conditions and the following | ||
32 | disclaimer in the documentation and/or other materials provided | ||
33 | with the distribution. | ||
34 | |||
35 | * Neither the name of John MacFarlane nor the names of other | ||
36 | contributors may be used to endorse or promote products derived | ||
37 | from this software without specific prior written permission. | ||
38 | |||
39 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
40 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
41 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
42 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
43 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
44 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
45 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
46 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
47 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
48 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
49 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
diff --git a/default.asciidoc b/default.asciidoc new file mode 100644 index 0000000..2721546 --- /dev/null +++ b/default.asciidoc | |||
@@ -0,0 +1,35 @@ | |||
1 | $if(titleblock)$ | ||
2 | $title$ | ||
3 | $if(author)$ | ||
4 | $for(author)$$author$$sep$; $endfor$ | ||
5 | $endif$ | ||
6 | $if(date)$ | ||
7 | $date$ | ||
8 | $endif$ | ||
9 | $if(keywords)$ | ||
10 | :keywords: $for(keywords)$$keywords$$sep$, $endfor$ | ||
11 | $endif$ | ||
12 | $if(toc)$ | ||
13 | :toc: | ||
14 | $endif$ | ||
15 | |||
16 | $endif$ | ||
17 | $if(abstract)$ | ||
18 | [abstract] | ||
19 | == Abstract | ||
20 | $abstract$ | ||
21 | |||
22 | $endif$ | ||
23 | $for(header-includes)$ | ||
24 | $header-includes$ | ||
25 | |||
26 | $endfor$ | ||
27 | $for(include-before)$ | ||
28 | $include-before$ | ||
29 | |||
30 | $endfor$ | ||
31 | $body$ | ||
32 | $for(include-after)$ | ||
33 | |||
34 | $include-after$ | ||
35 | $endfor$ | ||
diff --git a/default.commonmark b/default.commonmark new file mode 100644 index 0000000..9f6ca96 --- /dev/null +++ b/default.commonmark | |||
@@ -0,0 +1,21 @@ | |||
1 | $if(titleblock)$ | ||
2 | $titleblock$ | ||
3 | |||
4 | $endif$ | ||
5 | $for(header-includes)$ | ||
6 | $header-includes$ | ||
7 | |||
8 | $endfor$ | ||
9 | $for(include-before)$ | ||
10 | $include-before$ | ||
11 | |||
12 | $endfor$ | ||
13 | $if(toc)$ | ||
14 | $table-of-contents$ | ||
15 | |||
16 | $endif$ | ||
17 | $body$ | ||
18 | $for(include-after)$ | ||
19 | |||
20 | $include-after$ | ||
21 | $endfor$ | ||
diff --git a/default.context b/default.context new file mode 100644 index 0000000..e17d85b --- /dev/null +++ b/default.context | |||
@@ -0,0 +1,143 @@ | |||
1 | $if(context-lang)$ | ||
2 | \mainlanguage[$context-lang$] | ||
3 | $endif$ | ||
4 | $if(context-dir)$ | ||
5 | \setupalign[$context-dir$] | ||
6 | \setupdirections[bidi=on,method=two] | ||
7 | $endif$ | ||
8 | % Enable hyperlinks | ||
9 | \setupinteraction | ||
10 | [state=start, | ||
11 | $if(title)$ | ||
12 | title={$title$}, | ||
13 | $endif$ | ||
14 | $if(subtitle)$ | ||
15 | subtitle={$subtitle$}, | ||
16 | $endif$ | ||
17 | $if(author)$ | ||
18 | author={$for(author)$$author$$sep$; $endfor$}, | ||
19 | $endif$ | ||
20 | $if(keywords)$ | ||
21 | keyword={$for(keywords)$$keywords$$sep$; $endfor$}, | ||
22 | $endif$ | ||
23 | style=$linkstyle$, | ||
24 | color=$linkcolor$, | ||
25 | contrastcolor=$linkcontrastcolor$] | ||
26 | |||
27 | % make chapter, section bookmarks visible when opening document | ||
28 | \placebookmarks[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][chapter, section] | ||
29 | \setupinteractionscreen[option=bookmark] | ||
30 | \setuptagging[state=start] | ||
31 | |||
32 | $if(papersize)$ | ||
33 | \setuppapersize[$for(papersize)$$papersize$$sep$,$endfor$] | ||
34 | $endif$ | ||
35 | $if(layout)$ | ||
36 | \setuplayout[$for(layout)$$layout$$sep$,$endfor$] | ||
37 | $endif$ | ||
38 | $if(pagenumbering)$ | ||
39 | \setuppagenumbering[$for(pagenumbering)$$pagenumbering$$sep$,$endfor$] | ||
40 | $endif$ | ||
41 | |||
42 | % use microtypography | ||
43 | \definefontfeature[default][default][script=latn, protrusion=quality, expansion=quality, itlc=yes, textitalics=yes, onum=yes, pnum=yes] | ||
44 | \definefontfeature[smallcaps][script=latn, protrusion=quality, expansion=quality, smcp=yes, onum=yes, pnum=yes] | ||
45 | \setupalign[hz,hanging] | ||
46 | \setupitaliccorrection[global, always] | ||
47 | |||
48 | \setupbodyfontenvironment[default][em=italic] % use italic as em, not slanted | ||
49 | |||
50 | \definefallbackfamily[mainface][rm][DejaVu Serif][preset=range:greek, force=yes] | ||
51 | \definefontfamily[mainface][rm][$if(mainfont)$$mainfont$$else$Latin Modern Roman$endif$] | ||
52 | \definefontfamily[mainface][mm][$if(mathfont)$$mathfont$$else$Latin Modern Math$endif$] | ||
53 | \definefontfamily[mainface][ss][$if(sansfont)$$sansfont$$else$Latin Modern Sans$endif$] | ||
54 | \definefontfamily[mainface][tt][$if(monofont)$$monofont$$else$Latin Modern Typewriter$endif$][features=none] | ||
55 | \setupbodyfont[mainface$if(fontsize)$,$fontsize$$endif$] | ||
56 | |||
57 | \setupwhitespace[$if(whitespace)$$whitespace$$else$medium$endif$] | ||
58 | $if(indenting)$ | ||
59 | \setupindenting[$for(indenting)$$indenting$$sep$,$endfor$] | ||
60 | $endif$ | ||
61 | $if(interlinespace)$ | ||
62 | \setupinterlinespace[$for(interlinespace)$$interlinespace$$sep$,$endfor$] | ||
63 | $endif$ | ||
64 | |||
65 | \setuphead[chapter] [style=\tfd,header=empty] | ||
66 | \setuphead[section] [style=\tfc] | ||
67 | \setuphead[subsection] [style=\tfb] | ||
68 | \setuphead[subsubsection] [style=\bf] | ||
69 | \setuphead[subsubsubsection] [style=\sc] | ||
70 | \setuphead[subsubsubsubsection][style=\it] | ||
71 | |||
72 | $if(headertext)$ | ||
73 | \setupheadertexts$for(headertext)$[$headertext$]$endfor$ | ||
74 | $endif$ | ||
75 | $if(footertext)$ | ||
76 | \setupfootertexts$for(footertext)$[$footertext$]$endfor$ | ||
77 | $endif$ | ||
78 | $if(number-sections)$ | ||
79 | $else$ | ||
80 | \setuphead[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][number=no] | ||
81 | $endif$ | ||
82 | |||
83 | \definedescription | ||
84 | [description] | ||
85 | [headstyle=bold, style=normal, location=hanging, width=broad, margin=1cm, alternative=hanging] | ||
86 | |||
87 | \setupitemize[autointro] % prevent orphan list intro | ||
88 | \setupitemize[indentnext=no] | ||
89 | |||
90 | \setupfloat[figure][default={here,nonumber}] | ||
91 | \setupfloat[table][default={here,nonumber}] | ||
92 | |||
93 | \setupthinrules[width=15em] % width of horizontal rules | ||
94 | |||
95 | $for(header-includes)$ | ||
96 | $header-includes$ | ||
97 | $endfor$ | ||
98 | |||
99 | \starttext | ||
100 | $if(title)$ | ||
101 | \startalignment[middle] | ||
102 | {\tfd $title$} | ||
103 | $if(subtitle)$ | ||
104 | \smallskip | ||
105 | {\tfa $subtitle$} | ||
106 | $endif$ | ||
107 | $if(author)$ | ||
108 | \smallskip | ||
109 | {\tfa $for(author)$$author$$sep$\crlf $endfor$} | ||
110 | $endif$ | ||
111 | $if(date)$ | ||
112 | \smallskip | ||
113 | {\tfa $date$} | ||
114 | $endif$ | ||
115 | \bigskip | ||
116 | \stopalignment | ||
117 | $endif$ | ||
118 | $if(abstract)$ | ||
119 | \midaligned{\it Abstract} | ||
120 | \startnarrower[2*middle] | ||
121 | $abstract$ | ||
122 | \stopnarrower | ||
123 | \blank[big] | ||
124 | $endif$ | ||
125 | $for(include-before)$ | ||
126 | $include-before$ | ||
127 | $endfor$ | ||
128 | $if(toc)$ | ||
129 | \completecontent | ||
130 | $endif$ | ||
131 | $if(lot)$ | ||
132 | \completelistoftables | ||
133 | $endif$ | ||
134 | $if(lof)$ | ||
135 | \completelistoffigures | ||
136 | $endif$ | ||
137 | |||
138 | $body$ | ||
139 | |||
140 | $for(include-after)$ | ||
141 | $include-after$ | ||
142 | $endfor$ | ||
143 | \stoptext | ||
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> | ||
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> | ||
diff --git a/default.dokuwiki b/default.dokuwiki new file mode 100644 index 0000000..5d210fa --- /dev/null +++ b/default.dokuwiki | |||
@@ -0,0 +1,13 @@ | |||
1 | $for(include-before)$ | ||
2 | $include-before$ | ||
3 | |||
4 | $endfor$ | ||
5 | $if(toc)$ | ||
6 | __TOC__ | ||
7 | |||
8 | $endif$ | ||
9 | $body$ | ||
10 | $for(include-after)$ | ||
11 | |||
12 | $include-after$ | ||
13 | $endfor$ | ||
diff --git a/default.dzslides b/default.dzslides new file mode 100644 index 0000000..73ef045 --- /dev/null +++ b/default.dzslides | |||
@@ -0,0 +1,204 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <head$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
3 | <meta charset="utf-8"> | ||
4 | <meta name="generator" content="pandoc"> | ||
5 | $for(author-meta)$ | ||
6 | <meta name="author" content="$author-meta$"> | ||
7 | $endfor$ | ||
8 | $if(date-meta)$ | ||
9 | <meta name="dcterms.date" content="$date-meta$"> | ||
10 | $endif$ | ||
11 | $if(keywords)$ | ||
12 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$"> | ||
13 | $endif$ | ||
14 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
15 | <style type="text/css"> | ||
16 | code{white-space: pre-wrap;} | ||
17 | span.smallcaps{font-variant: small-caps;} | ||
18 | span.underline{text-decoration: underline;} | ||
19 | div.line-block{white-space: pre-line;} | ||
20 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
21 | $if(quotes)$ | ||
22 | q { quotes: "“" "”" "‘" "’"; } | ||
23 | $endif$ | ||
24 | </style> | ||
25 | $if(highlighting-css)$ | ||
26 | <style type="text/css"> | ||
27 | $highlighting-css$ | ||
28 | </style> | ||
29 | $endif$ | ||
30 | $if(css)$ | ||
31 | $for(css)$ | ||
32 | <link rel="stylesheet" href="$css$"> | ||
33 | $endfor$ | ||
34 | $else$ | ||
35 | <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet'> | ||
36 | |||
37 | <style> | ||
38 | html, .view body { background-color: black; counter-reset: slideidx; } | ||
39 | body, .view section { background-color: white; border-radius: 12px } | ||
40 | /* A section is a slide. It's size is 800x600, and this will never change */ | ||
41 | section, .view head > title { | ||
42 | /* The font from Google */ | ||
43 | font-family: 'Oswald', arial, serif; | ||
44 | font-size: 30px; | ||
45 | } | ||
46 | |||
47 | .view section:after { | ||
48 | counter-increment: slideidx; | ||
49 | content: counter(slideidx, decimal-leading-zero); | ||
50 | position: absolute; bottom: -80px; right: 100px; | ||
51 | color: white; | ||
52 | } | ||
53 | |||
54 | .view head > title { | ||
55 | color: white; | ||
56 | text-align: center; | ||
57 | margin: 1em 0 1em 0; | ||
58 | } | ||
59 | |||
60 | h1, h2 { | ||
61 | margin-top: 200px; | ||
62 | text-align: center; | ||
63 | font-size: 80px; | ||
64 | } | ||
65 | h3 { | ||
66 | margin: 100px 0 50px 100px; | ||
67 | } | ||
68 | |||
69 | ul { | ||
70 | margin: 50px 200px; | ||
71 | } | ||
72 | li > ul { | ||
73 | margin: 15px 50px; | ||
74 | } | ||
75 | |||
76 | p { | ||
77 | margin: 75px; | ||
78 | font-size: 50px; | ||
79 | } | ||
80 | |||
81 | blockquote { | ||
82 | height: 100%; | ||
83 | background-color: black; | ||
84 | color: white; | ||
85 | font-size: 60px; | ||
86 | padding: 50px; | ||
87 | } | ||
88 | blockquote:before { | ||
89 | content: open-quote; | ||
90 | } | ||
91 | blockquote:after { | ||
92 | content: close-quote; | ||
93 | } | ||
94 | |||
95 | /* Figures are displayed full-page, with the caption | ||
96 | on top of the image/video */ | ||
97 | figure { | ||
98 | background-color: black; | ||
99 | width: 100%; | ||
100 | height: 100%; | ||
101 | } | ||
102 | figure > * { | ||
103 | position: absolute; | ||
104 | } | ||
105 | figure > img, figure > video { | ||
106 | width: 100%; height: 100%; | ||
107 | } | ||
108 | figcaption { | ||
109 | margin: 70px; | ||
110 | font-size: 50px; | ||
111 | } | ||
112 | |||
113 | footer { | ||
114 | position: absolute; | ||
115 | bottom: 0; | ||
116 | width: 100%; | ||
117 | padding: 40px; | ||
118 | text-align: right; | ||
119 | background-color: #F3F4F8; | ||
120 | border-top: 1px solid #CCC; | ||
121 | } | ||
122 | |||
123 | /* Transition effect */ | ||
124 | /* Feel free to change the transition effect for original | ||
125 | animations. See here: | ||
126 | https://developer.mozilla.org/en/CSS/CSS_transitions | ||
127 | How to use CSS3 Transitions: */ | ||
128 | section { | ||
129 | -moz-transition: left 400ms linear 0s; | ||
130 | -webkit-transition: left 400ms linear 0s; | ||
131 | -ms-transition: left 400ms linear 0s; | ||
132 | transition: left 400ms linear 0s; | ||
133 | } | ||
134 | .view section { | ||
135 | -moz-transition: none; | ||
136 | -webkit-transition: none; | ||
137 | -ms-transition: none; | ||
138 | transition: none; | ||
139 | } | ||
140 | |||
141 | .view section[aria-selected] { | ||
142 | border: 5px red solid; | ||
143 | } | ||
144 | |||
145 | /* Before */ | ||
146 | section { left: -150%; } | ||
147 | /* Now */ | ||
148 | section[aria-selected] { left: 0; } | ||
149 | /* After */ | ||
150 | section[aria-selected] ~ section { left: +150%; } | ||
151 | |||
152 | /* Incremental elements */ | ||
153 | |||
154 | /* By default, visible */ | ||
155 | .incremental > * { opacity: 1; } | ||
156 | |||
157 | /* The current item */ | ||
158 | .incremental > *[aria-selected] { opacity: 1; } | ||
159 | |||
160 | /* The items to-be-selected */ | ||
161 | .incremental > *[aria-selected] ~ * { opacity: 0; } | ||
162 | |||
163 | /* The progressbar, at the bottom of the slides, show the global | ||
164 | progress of the presentation. */ | ||
165 | #progress-bar { | ||
166 | height: 2px; | ||
167 | background: #AAA; | ||
168 | } | ||
169 | </style> | ||
170 | $endif$ | ||
171 | $if(math)$ | ||
172 | $math$ | ||
173 | $endif$ | ||
174 | $for(header-includes)$ | ||
175 | $header-includes$ | ||
176 | $endfor$ | ||
177 | </head> | ||
178 | <body> | ||
179 | $if(title)$ | ||
180 | <section class="title"> | ||
181 | <h1 class="title">$title$</h1> | ||
182 | $if(subtitle)$ | ||
183 | <h1 class="subtitle">$subtitle$</h1> | ||
184 | $endif$ | ||
185 | <footer> | ||
186 | $if(author)$<span class="author">$for(author)$$author$$sep$, $endfor$</span>$endif$ · $if(date)$<span class="date">$date$</span>$endif$ | ||
187 | </footer> | ||
188 | </section> | ||
189 | $endif$ | ||
190 | $if(toc)$ | ||
191 | <section id="$idprefix$TOC"> | ||
192 | $table-of-contents$ | ||
193 | </section> | ||
194 | $endif$ | ||
195 | $for(include-before)$ | ||
196 | $include-before$ | ||
197 | $endfor$ | ||
198 | $body$ | ||
199 | $for(include-after)$ | ||
200 | $include-after$ | ||
201 | $endfor$ | ||
202 | $dzslides-core$ | ||
203 | </body> | ||
204 | </html> | ||
diff --git a/default.epub2 b/default.epub2 new file mode 100644 index 0000000..2abead3 --- /dev/null +++ b/default.epub2 | |||
@@ -0,0 +1,69 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | ||
3 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ xml:lang="$lang$"$endif$> | ||
4 | <head> | ||
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
6 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
7 | <meta name="generator" content="pandoc" /> | ||
8 | <title>$pagetitle$</title> | ||
9 | <style type="text/css"> | ||
10 | code{white-space: pre-wrap;} | ||
11 | span.smallcaps{font-variant: small-caps;} | ||
12 | span.underline{text-decoration: underline;} | ||
13 | div.line-block{white-space: pre-line;} | ||
14 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
15 | $if(quotes)$ | ||
16 | q { quotes: "“" "”" "‘" "’"; } | ||
17 | $endif$ | ||
18 | </style> | ||
19 | $if(highlighting-css)$ | ||
20 | <style type="text/css"> | ||
21 | $highlighting-css$ | ||
22 | </style> | ||
23 | $endif$ | ||
24 | $for(css)$ | ||
25 | <link rel="stylesheet" type="text/css" href="$css$" /> | ||
26 | $endfor$ | ||
27 | $for(header-includes)$ | ||
28 | $header-includes$ | ||
29 | $endfor$ | ||
30 | </head> | ||
31 | <body$if(coverpage)$ id="cover"$endif$> | ||
32 | $if(titlepage)$ | ||
33 | $for(title)$ | ||
34 | $if(title.text)$ | ||
35 | <h1 class="$title.type$">$title.text$</h1> | ||
36 | $else$ | ||
37 | <h1 class="title">$title$</h1> | ||
38 | $endif$ | ||
39 | $endfor$ | ||
40 | $if(subtitle)$ | ||
41 | <p class="subtitle">$subtitle$</p> | ||
42 | $endif$ | ||
43 | $for(author)$ | ||
44 | <p class="author">$author$</p> | ||
45 | $endfor$ | ||
46 | $for(creator)$ | ||
47 | <p class="$creator.role$">$creator.text$</p> | ||
48 | $endfor$ | ||
49 | $if(publisher)$ | ||
50 | <p class="publisher">$publisher$</p> | ||
51 | $endif$ | ||
52 | $if(date)$ | ||
53 | <p class="date">$date$</p> | ||
54 | $endif$ | ||
55 | $if(rights)$ | ||
56 | <div class="rights">$rights$</div> | ||
57 | $endif$ | ||
58 | $else$ | ||
59 | $for(include-before)$ | ||
60 | $include-before$ | ||
61 | $endfor$ | ||
62 | $body$ | ||
63 | $for(include-after)$ | ||
64 | $include-after$ | ||
65 | $endfor$ | ||
66 | $endif$ | ||
67 | </body> | ||
68 | </html> | ||
69 | |||
diff --git a/default.epub3 b/default.epub3 new file mode 100644 index 0000000..ffe2305 --- /dev/null +++ b/default.epub3 | |||
@@ -0,0 +1,70 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!DOCTYPE html> | ||
3 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops"$if(lang)$ xml:lang="$lang$"$endif$> | ||
4 | <head> | ||
5 | <meta charset="utf-8" /> | ||
6 | <meta name="generator" content="pandoc" /> | ||
7 | <title>$pagetitle$</title> | ||
8 | <style type="text/css"> | ||
9 | code{white-space: pre-wrap;} | ||
10 | span.smallcaps{font-variant: small-caps;} | ||
11 | span.underline{text-decoration: underline;} | ||
12 | div.line-block{white-space: pre-line;} | ||
13 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
14 | $if(quotes)$ | ||
15 | q { quotes: "“" "”" "‘" "’"; } | ||
16 | $endif$ | ||
17 | </style> | ||
18 | $if(highlighting-css)$ | ||
19 | <style type="text/css"> | ||
20 | $highlighting-css$ | ||
21 | </style> | ||
22 | $endif$ | ||
23 | $for(css)$ | ||
24 | <link rel="stylesheet" type="text/css" href="$css$" /> | ||
25 | $endfor$ | ||
26 | $for(header-includes)$ | ||
27 | $header-includes$ | ||
28 | $endfor$ | ||
29 | </head> | ||
30 | <body$if(coverpage)$ id="cover"$endif$> | ||
31 | $if(titlepage)$ | ||
32 | <section epub:type="titlepage"> | ||
33 | $for(title)$ | ||
34 | $if(title.type)$ | ||
35 | <h1 class="$title.type$">$title.text$</h1> | ||
36 | $else$ | ||
37 | <h1 class="title">$title$</h1> | ||
38 | $endif$ | ||
39 | $endfor$ | ||
40 | $if(subtitle)$ | ||
41 | <p class="subtitle">$subtitle$</p> | ||
42 | $endif$ | ||
43 | $for(author)$ | ||
44 | <p class="author">$author$</p> | ||
45 | $endfor$ | ||
46 | $for(creator)$ | ||
47 | <p class="$creator.role$">$creator.text$</p> | ||
48 | $endfor$ | ||
49 | $if(publisher)$ | ||
50 | <p class="publisher">$publisher$</p> | ||
51 | $endif$ | ||
52 | $if(date)$ | ||
53 | <p class="date">$date$</p> | ||
54 | $endif$ | ||
55 | $if(rights)$ | ||
56 | <div class="rights">$rights$</div> | ||
57 | $endif$ | ||
58 | </section> | ||
59 | $else$ | ||
60 | $for(include-before)$ | ||
61 | $include-before$ | ||
62 | $endfor$ | ||
63 | $body$ | ||
64 | $for(include-after)$ | ||
65 | $include-after$ | ||
66 | $endfor$ | ||
67 | $endif$ | ||
68 | </body> | ||
69 | </html> | ||
70 | |||
diff --git a/default.haddock b/default.haddock new file mode 100644 index 0000000..36d66c2 --- /dev/null +++ b/default.haddock | |||
@@ -0,0 +1 @@ | |||
$body$ | |||
diff --git a/default.html4 b/default.html4 new file mode 100644 index 0000000..a771599 --- /dev/null +++ b/default.html4 | |||
@@ -0,0 +1,70 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
2 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
3 | <head> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
5 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
6 | <meta name="generator" content="pandoc" /> | ||
7 | $for(author-meta)$ | ||
8 | <meta name="author" content="$author-meta$" /> | ||
9 | $endfor$ | ||
10 | $if(date-meta)$ | ||
11 | <meta name="date" content="$date-meta$" /> | ||
12 | $endif$ | ||
13 | $if(keywords)$ | ||
14 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
15 | $endif$ | ||
16 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
17 | <style type="text/css"> | ||
18 | code{white-space: pre-wrap;} | ||
19 | span.smallcaps{font-variant: small-caps;} | ||
20 | span.underline{text-decoration: underline;} | ||
21 | div.line-block{white-space: pre-line;} | ||
22 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
23 | $if(quotes)$ | ||
24 | q { quotes: "“" "”" "‘" "’"; } | ||
25 | $endif$ | ||
26 | </style> | ||
27 | $if(highlighting-css)$ | ||
28 | <style type="text/css"> | ||
29 | $highlighting-css$ | ||
30 | </style> | ||
31 | $endif$ | ||
32 | $for(css)$ | ||
33 | <link rel="stylesheet" href="$css$" type="text/css" /> | ||
34 | $endfor$ | ||
35 | $if(math)$ | ||
36 | $math$ | ||
37 | $endif$ | ||
38 | $for(header-includes)$ | ||
39 | $header-includes$ | ||
40 | $endfor$ | ||
41 | </head> | ||
42 | <body> | ||
43 | $for(include-before)$ | ||
44 | $include-before$ | ||
45 | $endfor$ | ||
46 | $if(title)$ | ||
47 | <div id="$idprefix$header"> | ||
48 | <h1 class="title">$title$</h1> | ||
49 | $if(subtitle)$ | ||
50 | <h1 class="subtitle">$subtitle$</h1> | ||
51 | $endif$ | ||
52 | $for(author)$ | ||
53 | <h2 class="author">$author$</h2> | ||
54 | $endfor$ | ||
55 | $if(date)$ | ||
56 | <h3 class="date">$date$</h3> | ||
57 | $endif$ | ||
58 | </div> | ||
59 | $endif$ | ||
60 | $if(toc)$ | ||
61 | <div id="$idprefix$TOC"> | ||
62 | $table-of-contents$ | ||
63 | </div> | ||
64 | $endif$ | ||
65 | $body$ | ||
66 | $for(include-after)$ | ||
67 | $include-after$ | ||
68 | $endfor$ | ||
69 | </body> | ||
70 | </html> | ||
diff --git a/default.html5 b/default.html5 new file mode 100644 index 0000000..2272a01 --- /dev/null +++ b/default.html5 | |||
@@ -0,0 +1,73 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$> | ||
3 | <head> | ||
4 | <meta charset="utf-8" /> | ||
5 | <meta name="generator" content="pandoc" /> | ||
6 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> | ||
7 | $for(author-meta)$ | ||
8 | <meta name="author" content="$author-meta$" /> | ||
9 | $endfor$ | ||
10 | $if(date-meta)$ | ||
11 | <meta name="dcterms.date" content="$date-meta$" /> | ||
12 | $endif$ | ||
13 | $if(keywords)$ | ||
14 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
15 | $endif$ | ||
16 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
17 | <style type="text/css"> | ||
18 | code{white-space: pre-wrap;} | ||
19 | span.smallcaps{font-variant: small-caps;} | ||
20 | span.underline{text-decoration: underline;} | ||
21 | div.line-block{white-space: pre-line;} | ||
22 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
23 | $if(quotes)$ | ||
24 | q { quotes: "“" "”" "‘" "’"; } | ||
25 | $endif$ | ||
26 | </style> | ||
27 | $if(highlighting-css)$ | ||
28 | <style type="text/css"> | ||
29 | $highlighting-css$ | ||
30 | </style> | ||
31 | $endif$ | ||
32 | $for(css)$ | ||
33 | <link rel="stylesheet" href="$css$"> | ||
34 | $endfor$ | ||
35 | $if(math)$ | ||
36 | $math$ | ||
37 | $endif$ | ||
38 | <!--[if lt IE 9]> | ||
39 | <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script> | ||
40 | <![endif]--> | ||
41 | $for(header-includes)$ | ||
42 | $header-includes$ | ||
43 | $endfor$ | ||
44 | </head> | ||
45 | <body> | ||
46 | $for(include-before)$ | ||
47 | $include-before$ | ||
48 | $endfor$ | ||
49 | $if(title)$ | ||
50 | <header> | ||
51 | <h1 class="title">$title$</h1> | ||
52 | $if(subtitle)$ | ||
53 | <p class="subtitle">$subtitle$</p> | ||
54 | $endif$ | ||
55 | $for(author)$ | ||
56 | <p class="author">$author$</p> | ||
57 | $endfor$ | ||
58 | $if(date)$ | ||
59 | <p class="date">$date$</p> | ||
60 | $endif$ | ||
61 | </header> | ||
62 | $endif$ | ||
63 | $if(toc)$ | ||
64 | <nav id="$idprefix$TOC"> | ||
65 | $table-of-contents$ | ||
66 | </nav> | ||
67 | $endif$ | ||
68 | $body$ | ||
69 | $for(include-after)$ | ||
70 | $include-after$ | ||
71 | $endfor$ | ||
72 | </body> | ||
73 | </html> | ||
diff --git a/default.icml b/default.icml new file mode 100644 index 0000000..b93fa87 --- /dev/null +++ b/default.icml | |||
@@ -0,0 +1,43 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
2 | <?aid style="50" type="snippet" readerVersion="6.0" featureSet="513" product="8.0(370)" ?> | ||
3 | <?aid SnippetType="InCopyInterchange"?> | ||
4 | <Document DOMVersion="8.0" Self="pandoc_doc"> | ||
5 | <RootCharacterStyleGroup Self="pandoc_character_styles"> | ||
6 | <CharacterStyle Self="$$ID/NormalCharacterStyle" Name="Default" /> | ||
7 | $charStyles$ | ||
8 | </RootCharacterStyleGroup> | ||
9 | <RootParagraphStyleGroup Self="pandoc_paragraph_styles"> | ||
10 | <ParagraphStyle Self="$$ID/NormalParagraphStyle" Name="$$ID/NormalParagraphStyle" | ||
11 | SpaceBefore="6" SpaceAfter="6"> <!-- paragraph spacing --> | ||
12 | <Properties> | ||
13 | <TabList type="list"> | ||
14 | <ListItem type="record"> | ||
15 | <Alignment type="enumeration">LeftAlign</Alignment> | ||
16 | <AlignmentCharacter type="string">.</AlignmentCharacter> | ||
17 | <Leader type="string"></Leader> | ||
18 | <Position type="unit">10</Position> <!-- first tab stop --> | ||
19 | </ListItem> | ||
20 | </TabList> | ||
21 | </Properties> | ||
22 | </ParagraphStyle> | ||
23 | $parStyles$ | ||
24 | </RootParagraphStyleGroup> | ||
25 | <RootTableStyleGroup Self="pandoc_table_styles"> | ||
26 | <TableStyle Self="TableStyle/Table" Name="Table" /> | ||
27 | </RootTableStyleGroup> | ||
28 | <RootCellStyleGroup Self="pandoc_cell_styles"> | ||
29 | <CellStyle Self="CellStyle/Cell" AppliedParagraphStyle="ParagraphStyle/$$ID/[No paragraph style]" Name="Cell" /> | ||
30 | </RootCellStyleGroup> | ||
31 | <Story Self="pandoc_story" | ||
32 | TrackChanges="false" | ||
33 | StoryTitle="$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$" | ||
34 | AppliedTOCStyle="n" | ||
35 | AppliedNamedGrid="n" > | ||
36 | <StoryPreference OpticalMarginAlignment="true" OpticalMarginSize="12" /> | ||
37 | |||
38 | <!-- body needs to be non-indented, otherwise code blocks are indented too far --> | ||
39 | $body$ | ||
40 | |||
41 | </Story> | ||
42 | $hyperlinks$ | ||
43 | </Document> | ||
diff --git a/default.jats b/default.jats new file mode 100644 index 0000000..228a063 --- /dev/null +++ b/default.jats | |||
@@ -0,0 +1,203 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | $if(xml-stylesheet)$ | ||
3 | <?xml-stylesheet type="text/xsl" href="$xml-stylesheet$"?> | ||
4 | $endif$ | ||
5 | <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Publishing DTD v1.0 20120330//EN" | ||
6 | "JATS-journalpublishing1.dtd"> | ||
7 | $if(article.type)$ | ||
8 | <article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.0" article-type="$article.type$"> | ||
9 | $else$ | ||
10 | <article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.0" article-type="other"> | ||
11 | $endif$ | ||
12 | <front> | ||
13 | <journal-meta> | ||
14 | $if(journal.publisher-id)$ | ||
15 | <journal-id journal-id-type="publisher-id">$journal.publisher-id$</journal-id> | ||
16 | $endif$ | ||
17 | $if(journal.nlm-ta)$ | ||
18 | <journal-id journal-id-type="nlm-ta">$journal.nlm-ta$</journal-id> | ||
19 | $endif$ | ||
20 | $if(journal.pmc)$ | ||
21 | <journal-id journal-id-type="pmc">$journal.pmc$</journal-id> | ||
22 | $endif$ | ||
23 | <journal-title-group> | ||
24 | $if(journal.title)$ | ||
25 | <journal-title>$journal.title$</journal-title> | ||
26 | $endif$ | ||
27 | $if(journal.abbrev-title)$ | ||
28 | <abbrev-journal-title>$journal.abbrev-title$</abbrev-journal-title> | ||
29 | $endif$ | ||
30 | </journal-title-group> | ||
31 | $if(journal.pissn)$ | ||
32 | <issn pub-type="ppub">$journal.pissn$</issn> | ||
33 | $endif$ | ||
34 | $if(journal.eissn)$ | ||
35 | <issn pub-type="epub">$journal.eissn$</issn> | ||
36 | $endif$ | ||
37 | <publisher> | ||
38 | <publisher-name>$journal.publisher-name$</publisher-name> | ||
39 | $if(journal.publisher-loc)$ | ||
40 | <publisher-loc>$journal.publisher-loc$</publisher-loc> | ||
41 | $endif$ | ||
42 | </publisher> | ||
43 | </journal-meta> | ||
44 | <article-meta> | ||
45 | $if(article.publisher-id)$ | ||
46 | <article-id pub-id-type="publisher-id">$article.publisher-id$</article-id> | ||
47 | $endif$ | ||
48 | $if(article.doi)$ | ||
49 | <article-id pub-id-type="doi">$article.doi$</article-id> | ||
50 | $endif$ | ||
51 | $if(article.pmid)$ | ||
52 | <article-id pub-id-type="pmid">$article.pmid$</article-id> | ||
53 | $endif$ | ||
54 | $if(article.pmcid)$ | ||
55 | <article-id pub-id-type="pmcid">$article.pmcid$</article-id> | ||
56 | $endif$ | ||
57 | $if(article.art-access-id)$ | ||
58 | <article-id pub-id-type="art-access-id">$article.art-access-id$</article-id> | ||
59 | $endif$ | ||
60 | $if(article.heading)$ | ||
61 | <article-categories> | ||
62 | <subj-group subj-group-type="heading"> | ||
63 | <subject>$article.heading$</subject> | ||
64 | </subj-group> | ||
65 | $if(article.categories)$ | ||
66 | <subj-group subj-group-type="categories"> | ||
67 | $for(article.categories)$ | ||
68 | <subject>$article.categories$</subject> | ||
69 | $endfor$ | ||
70 | </subj-group> | ||
71 | $endif$ | ||
72 | </article-categories> | ||
73 | $endif$ | ||
74 | $if(title)$ | ||
75 | <title-group> | ||
76 | <article-title>$title$</article-title> | ||
77 | </title-group> | ||
78 | $endif$ | ||
79 | $if(author)$ | ||
80 | <contrib-group> | ||
81 | $for(author)$ | ||
82 | <contrib contrib-type="author"> | ||
83 | $if(author.orcid)$ | ||
84 | <contrib-id contrib-id-type="orcid">$author.orcid$</contrib-id> | ||
85 | $endif$ | ||
86 | <name> | ||
87 | $if(author.surname)$ | ||
88 | <surname>$author.surname$</surname> | ||
89 | <given-names>$author.given-names$</given-names> | ||
90 | $else$ | ||
91 | <string-name>$author$</string-name> | ||
92 | $endif$ | ||
93 | </name> | ||
94 | $if(author.email)$ | ||
95 | <email>$author.email$</email> | ||
96 | $endif$ | ||
97 | $if(author.aff-id)$ | ||
98 | <xref ref-type="aff" rid="aff-$contrib.aff-id$"/> | ||
99 | $endif$ | ||
100 | $if(author.cor-id)$ | ||
101 | <xref ref-type="corresp" rid="cor-$author.cor-id$"><sup>*</sup></xref> | ||
102 | $endif$ | ||
103 | </contrib> | ||
104 | $endfor$ | ||
105 | </contrib-group> | ||
106 | $endif$ | ||
107 | $if(article.author-notes)$ | ||
108 | <author-notes> | ||
109 | $if(article.author-notes.corresp)$ | ||
110 | $for(article.author-notes.corresp)$ | ||
111 | <corresp id="cor-$article.author-notes.corresp.id$">* E-mail: <email>$article.author-notes.corresp.email$</email></corresp> | ||
112 | $endfor$ | ||
113 | $endif$ | ||
114 | $if(article.author-notes.conflict)$ | ||
115 | <fn fn-type="conflict"><p>$article.author-notes.conflict$</p></fn> | ||
116 | $endif$ | ||
117 | $if(article.author-notes.con)$ | ||
118 | <fn fn-type="con"><p>$article.author-notes.con$</p></fn> | ||
119 | $endif$ | ||
120 | </author-notes> | ||
121 | $endif$ | ||
122 | $if(date)$ | ||
123 | $if(date.iso-8601)$ | ||
124 | <pub-date pub-type="epub" iso-8601-date="$date.iso-8601$"> | ||
125 | $else$ | ||
126 | <pub-date pub-type="epub"> | ||
127 | $endif$ | ||
128 | $if(date.day)$ | ||
129 | <day>$pub-date.day$</day> | ||
130 | $endif$ | ||
131 | $if(date.month)$ | ||
132 | <month>$pub-date.month$</month> | ||
133 | $endif$ | ||
134 | $if(date.year)$ | ||
135 | <year>$pub-date.year$</year> | ||
136 | $else$ | ||
137 | <string-date>$date$</string-date> | ||
138 | $endif$ | ||
139 | </pub-date> | ||
140 | $endif$ | ||
141 | $if(article.volume)$ | ||
142 | <volume>$article.volume$</volume> | ||
143 | $endif$ | ||
144 | $if(article.issue)$ | ||
145 | <issue>$article.issue$</issue> | ||
146 | $endif$ | ||
147 | $if(article.fpage)$ | ||
148 | <fpage>$article.fpage$</fpage> | ||
149 | $endif$ | ||
150 | $if(article.lpage)$ | ||
151 | <lpage>$article.lpage$</lpage> | ||
152 | $endif$ | ||
153 | $if(article.elocation-id)$ | ||
154 | <elocation-id>$article.elocation-id$</elocation-id> | ||
155 | $endif$ | ||
156 | $if(history)$ | ||
157 | <history> | ||
158 | </history> | ||
159 | $endif$ | ||
160 | $if(copyright)$ | ||
161 | <permissions> | ||
162 | $if(copyright.statement)$ | ||
163 | <copyright-statement>$copyright.statement$</copyright-statement> | ||
164 | $endif$ | ||
165 | $if(copyright.year)$ | ||
166 | <copyright-year>$copyright.year$</copyright-year> | ||
167 | $endif$ | ||
168 | $if(copyright.holder)$ | ||
169 | <copyright-holder>$copyright.holder$</copyright-holder> | ||
170 | $endif$ | ||
171 | $if(copyright.text)$ | ||
172 | <license license-type="$copyright.type$" xlink:href="$copyright.link$"> | ||
173 | <license-p>$copyright.text$</license-p> | ||
174 | </license> | ||
175 | </permissions> | ||
176 | $endif$ | ||
177 | $endif$ | ||
178 | $if(tags)$ | ||
179 | <kwd-group kwd-group-type="author"> | ||
180 | $for(tags)$ | ||
181 | <kwd>$tags$</kwd> | ||
182 | $endfor$ | ||
183 | </kwd-group> | ||
184 | $endif$ | ||
185 | $if(article.funding-statement)$ | ||
186 | <funding-group> | ||
187 | <funding-statement>$article.funding-statement$</funding-statement> | ||
188 | </funding-group> | ||
189 | $endif$ | ||
190 | </article-meta> | ||
191 | $if(notes)$ | ||
192 | <notes>$notes$</notes> | ||
193 | $endif$ | ||
194 | </front> | ||
195 | <body> | ||
196 | $body$ | ||
197 | </body> | ||
198 | <back> | ||
199 | $if(back)$ | ||
200 | $back$ | ||
201 | $endif$ | ||
202 | </back> | ||
203 | </article> | ||
diff --git a/default.latex b/default.latex new file mode 100644 index 0000000..a9191aa --- /dev/null +++ b/default.latex | |||
@@ -0,0 +1,403 @@ | |||
1 | \PassOptionsToPackage{unicode=true}{hyperref} % options for packages loaded elsewhere | ||
2 | \PassOptionsToPackage{hyphens}{url} | ||
3 | $if(colorlinks)$ | ||
4 | \PassOptionsToPackage{dvipsnames,svgnames*,x11names*}{xcolor} | ||
5 | $endif$ | ||
6 | % | ||
7 | \documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$babel-lang$,$endif$$if(papersize)$$papersize$paper,$endif$$if(beamer)$ignorenonframetext,$if(handout)$handout,$endif$$if(aspectratio)$aspectratio=$aspectratio$,$endif$$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} | ||
8 | $if(beamer)$ | ||
9 | \setbeamertemplate{caption}[numbered] | ||
10 | \setbeamertemplate{caption label separator}{: } | ||
11 | \setbeamercolor{caption name}{fg=normal text.fg} | ||
12 | \beamertemplatenavigationsymbols$if(navigation)$$navigation$$else$empty$endif$ | ||
13 | $endif$ | ||
14 | $if(beamerarticle)$ | ||
15 | \usepackage{beamerarticle} % needs to be loaded first | ||
16 | $endif$ | ||
17 | $if(fontfamily)$ | ||
18 | \usepackage[$for(fontfamilyoptions)$$fontfamilyoptions$$sep$,$endfor$]{$fontfamily$} | ||
19 | $else$ | ||
20 | \usepackage{lmodern} | ||
21 | $endif$ | ||
22 | $if(linestretch)$ | ||
23 | \usepackage{setspace} | ||
24 | \setstretch{$linestretch$} | ||
25 | $endif$ | ||
26 | \usepackage{amssymb,amsmath} | ||
27 | \usepackage{ifxetex,ifluatex} | ||
28 | \usepackage{fixltx2e} % provides \textsubscript | ||
29 | \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex | ||
30 | \usepackage[$if(fontenc)$$fontenc$$else$T1$endif$]{fontenc} | ||
31 | \usepackage[utf8]{inputenc} | ||
32 | \usepackage{textcomp} % provides euro and other symbols | ||
33 | \else % if luatex or xelatex | ||
34 | $if(mathspec)$ | ||
35 | \ifxetex | ||
36 | \usepackage{mathspec} | ||
37 | \else | ||
38 | \usepackage{unicode-math} | ||
39 | \fi | ||
40 | $else$ | ||
41 | \usepackage{unicode-math} | ||
42 | $endif$ | ||
43 | \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} | ||
44 | $for(fontfamilies)$ | ||
45 | \newfontfamily{$fontfamilies.name$}[$fontfamilies.options$]{$fontfamilies.font$} | ||
46 | $endfor$ | ||
47 | $if(mainfont)$ | ||
48 | \setmainfont[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$} | ||
49 | $endif$ | ||
50 | $if(sansfont)$ | ||
51 | \setsansfont[$for(sansfontoptions)$$sansfontoptions$$sep$,$endfor$]{$sansfont$} | ||
52 | $endif$ | ||
53 | $if(monofont)$ | ||
54 | \setmonofont[Mapping=tex-ansi$if(monofontoptions)$,$for(monofontoptions)$$monofontoptions$$sep$,$endfor$$endif$]{$monofont$} | ||
55 | $endif$ | ||
56 | $if(mathfont)$ | ||
57 | $if(mathspec)$ | ||
58 | \ifxetex | ||
59 | \setmathfont(Digits,Latin,Greek)[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} | ||
60 | \else | ||
61 | \setmathfont[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} | ||
62 | \fi | ||
63 | $else$ | ||
64 | \setmathfont[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} | ||
65 | $endif$ | ||
66 | $endif$ | ||
67 | $if(CJKmainfont)$ | ||
68 | \ifxetex | ||
69 | \usepackage{xeCJK} | ||
70 | \setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$} | ||
71 | \fi | ||
72 | $endif$ | ||
73 | $if(luatexjapresetoptions)$ | ||
74 | \ifluatex | ||
75 | \usepackage[$for(luatexjapresetoptions)$$luatexjapresetoptions$$sep$,$endfor$]{luatexja-preset} | ||
76 | \fi | ||
77 | $endif$ | ||
78 | $if(CJKmainfont)$ | ||
79 | \ifluatex | ||
80 | \usepackage[$for(luatexjafontspecoptions)$$luatexjafontspecoptions$$sep$,$endfor$]{luatexja-fontspec} | ||
81 | \setmainjfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$} | ||
82 | \fi | ||
83 | $endif$ | ||
84 | \fi | ||
85 | $if(beamer)$ | ||
86 | $if(theme)$ | ||
87 | \usetheme[$for(themeoptions)$$themeoptions$$sep$,$endfor$]{$theme$} | ||
88 | $endif$ | ||
89 | $if(colortheme)$ | ||
90 | \usecolortheme{$colortheme$} | ||
91 | $endif$ | ||
92 | $if(fonttheme)$ | ||
93 | \usefonttheme{$fonttheme$} | ||
94 | $endif$ | ||
95 | $if(mainfont)$ | ||
96 | \usefonttheme{serif} % use mainfont rather than sansfont for slide text | ||
97 | $endif$ | ||
98 | $if(innertheme)$ | ||
99 | \useinnertheme{$innertheme$} | ||
100 | $endif$ | ||
101 | $if(outertheme)$ | ||
102 | \useoutertheme{$outertheme$} | ||
103 | $endif$ | ||
104 | $endif$ | ||
105 | % use upquote if available, for straight quotes in verbatim environments | ||
106 | \IfFileExists{upquote.sty}{\usepackage{upquote}}{} | ||
107 | % use microtype if available | ||
108 | \IfFileExists{microtype.sty}{% | ||
109 | \usepackage[$for(microtypeoptions)$$microtypeoptions$$sep$,$endfor$]{microtype} | ||
110 | \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts | ||
111 | }{} | ||
112 | $if(indent)$ | ||
113 | $else$ | ||
114 | \IfFileExists{parskip.sty}{% | ||
115 | \usepackage{parskip} | ||
116 | }{% else | ||
117 | \setlength{\parindent}{0pt} | ||
118 | \setlength{\parskip}{6pt plus 2pt minus 1pt} | ||
119 | } | ||
120 | $endif$ | ||
121 | $if(verbatim-in-note)$ | ||
122 | \usepackage{fancyvrb} | ||
123 | $endif$ | ||
124 | $if(colorlinks)$ | ||
125 | \usepackage{xcolor} | ||
126 | $endif$ | ||
127 | \usepackage{hyperref} | ||
128 | \hypersetup{ | ||
129 | $if(title-meta)$ | ||
130 | pdftitle={$title-meta$}, | ||
131 | $endif$ | ||
132 | $if(author-meta)$ | ||
133 | pdfauthor={$author-meta$}, | ||
134 | $endif$ | ||
135 | $if(keywords)$ | ||
136 | pdfkeywords={$for(keywords)$$keywords$$sep$, $endfor$}, | ||
137 | $endif$ | ||
138 | $if(colorlinks)$ | ||
139 | colorlinks=true, | ||
140 | linkcolor=$if(linkcolor)$$linkcolor$$else$Maroon$endif$, | ||
141 | citecolor=$if(citecolor)$$citecolor$$else$Blue$endif$, | ||
142 | urlcolor=$if(urlcolor)$$urlcolor$$else$Blue$endif$, | ||
143 | $else$ | ||
144 | pdfborder={0 0 0}, | ||
145 | $endif$ | ||
146 | breaklinks=true} | ||
147 | \urlstyle{same} % don't use monospace font for urls | ||
148 | $if(verbatim-in-note)$ | ||
149 | \VerbatimFootnotes % allows verbatim text in footnotes | ||
150 | $endif$ | ||
151 | $if(geometry)$ | ||
152 | \usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry} | ||
153 | $endif$ | ||
154 | $if(beamer)$ | ||
155 | \newif\ifbibliography | ||
156 | $endif$ | ||
157 | $if(listings)$ | ||
158 | \usepackage{listings} | ||
159 | \newcommand{\passthrough}[1]{#1} | ||
160 | $endif$ | ||
161 | $if(lhs)$ | ||
162 | \lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{} | ||
163 | $endif$ | ||
164 | $if(highlighting-macros)$ | ||
165 | $highlighting-macros$ | ||
166 | $endif$ | ||
167 | $if(tables)$ | ||
168 | \usepackage{longtable,booktabs} | ||
169 | $if(beamer)$ | ||
170 | \usepackage{caption} | ||
171 | % These lines are needed to make table captions work with longtable: | ||
172 | \makeatletter | ||
173 | \def\fnum@table{\tablename~\thetable} | ||
174 | \makeatother | ||
175 | $else$ | ||
176 | % Fix footnotes in tables (requires footnote package) | ||
177 | \IfFileExists{footnote.sty}{\usepackage{footnote}\makesavenoteenv{longtable}}{} | ||
178 | $endif$ | ||
179 | $endif$ | ||
180 | $if(graphics)$ | ||
181 | \usepackage{graphicx,grffile} | ||
182 | \makeatletter | ||
183 | \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} | ||
184 | \def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi} | ||
185 | \makeatother | ||
186 | % Scale images if necessary, so that they will not overflow the page | ||
187 | % margins by default, and it is still possible to overwrite the defaults | ||
188 | % using explicit options in \includegraphics[width, height, ...]{} | ||
189 | \setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} | ||
190 | $endif$ | ||
191 | $if(beamer)$ | ||
192 | % Prevent slide breaks in the middle of a paragraph: | ||
193 | \widowpenalties 1 10000 | ||
194 | \raggedbottom | ||
195 | $if(section-titles)$ | ||
196 | \AtBeginPart{ | ||
197 | \let\insertpartnumber\relax | ||
198 | \let\partname\relax | ||
199 | \frame{\partpage} | ||
200 | } | ||
201 | \AtBeginSection{ | ||
202 | \ifbibliography | ||
203 | \else | ||
204 | \let\insertsectionnumber\relax | ||
205 | \let\sectionname\relax | ||
206 | \frame{\sectionpage} | ||
207 | \fi | ||
208 | } | ||
209 | \AtBeginSubsection{ | ||
210 | \let\insertsubsectionnumber\relax | ||
211 | \let\subsectionname\relax | ||
212 | \frame{\subsectionpage} | ||
213 | } | ||
214 | $endif$ | ||
215 | $endif$ | ||
216 | $if(links-as-notes)$ | ||
217 | % Make links footnotes instead of hotlinks: | ||
218 | \DeclareRobustCommand{\href}[2]{#2\footnote{\url{#1}}} | ||
219 | $endif$ | ||
220 | $if(strikeout)$ | ||
221 | \usepackage[normalem]{ulem} | ||
222 | % avoid problems with \sout in headers with hyperref: | ||
223 | \pdfstringdefDisableCommands{\renewcommand{\sout}{}} | ||
224 | $endif$ | ||
225 | \setlength{\emergencystretch}{3em} % prevent overfull lines | ||
226 | \providecommand{\tightlist}{% | ||
227 | \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} | ||
228 | $if(numbersections)$ | ||
229 | \setcounter{secnumdepth}{$if(secnumdepth)$$secnumdepth$$else$5$endif$} | ||
230 | $else$ | ||
231 | \setcounter{secnumdepth}{0} | ||
232 | $endif$ | ||
233 | $if(beamer)$ | ||
234 | $else$ | ||
235 | $if(subparagraph)$ | ||
236 | $else$ | ||
237 | % Redefines (sub)paragraphs to behave more like sections | ||
238 | \ifx\paragraph\undefined\else | ||
239 | \let\oldparagraph\paragraph | ||
240 | \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} | ||
241 | \fi | ||
242 | \ifx\subparagraph\undefined\else | ||
243 | \let\oldsubparagraph\subparagraph | ||
244 | \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} | ||
245 | \fi | ||
246 | $endif$ | ||
247 | $endif$ | ||
248 | $if(pagestyle)$ | ||
249 | \pagestyle{$pagestyle$} | ||
250 | $endif$ | ||
251 | |||
252 | % set default figure placement to htbp | ||
253 | \makeatletter | ||
254 | \def\fps@figure{htbp} | ||
255 | \makeatother | ||
256 | |||
257 | $for(header-includes)$ | ||
258 | $header-includes$ | ||
259 | $endfor$ | ||
260 | $if(lang)$ | ||
261 | \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex | ||
262 | \usepackage[shorthands=off,$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} | ||
263 | $if(babel-newcommands)$ | ||
264 | $babel-newcommands$ | ||
265 | $endif$ | ||
266 | \else | ||
267 | % load polyglossia as late as possible as it *could* call bidi if RTL lang (e.g. Hebrew or Arabic) | ||
268 | \usepackage{polyglossia} | ||
269 | \setmainlanguage[$polyglossia-lang.options$]{$polyglossia-lang.name$} | ||
270 | $for(polyglossia-otherlangs)$ | ||
271 | \setotherlanguage[$polyglossia-otherlangs.options$]{$polyglossia-otherlangs.name$} | ||
272 | $endfor$ | ||
273 | \fi | ||
274 | $endif$ | ||
275 | $if(dir)$ | ||
276 | \ifxetex | ||
277 | % load bidi as late as possible as it modifies e.g. graphicx | ||
278 | $if(latex-dir-rtl)$ | ||
279 | \usepackage[RTLdocument]{bidi} | ||
280 | $else$ | ||
281 | \usepackage{bidi} | ||
282 | $endif$ | ||
283 | \fi | ||
284 | \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex | ||
285 | \TeXXeTstate=1 | ||
286 | \newcommand{\RL}[1]{\beginR #1\endR} | ||
287 | \newcommand{\LR}[1]{\beginL #1\endL} | ||
288 | \newenvironment{RTL}{\beginR}{\endR} | ||
289 | \newenvironment{LTR}{\beginL}{\endL} | ||
290 | \fi | ||
291 | $endif$ | ||
292 | $if(natbib)$ | ||
293 | \usepackage[$natbiboptions$]{natbib} | ||
294 | \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} | ||
295 | $endif$ | ||
296 | $if(biblatex)$ | ||
297 | \usepackage[$if(biblio-style)$style=$biblio-style$,$endif$$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$]{biblatex} | ||
298 | $for(bibliography)$ | ||
299 | \addbibresource{$bibliography$} | ||
300 | $endfor$ | ||
301 | $endif$ | ||
302 | |||
303 | $if(title)$ | ||
304 | \title{$title$$if(thanks)$\thanks{$thanks$}$endif$} | ||
305 | $endif$ | ||
306 | $if(subtitle)$ | ||
307 | \providecommand{\subtitle}[1]{} | ||
308 | \subtitle{$subtitle$} | ||
309 | $endif$ | ||
310 | $if(author)$ | ||
311 | \author{$for(author)$$author$$sep$ \and $endfor$} | ||
312 | $endif$ | ||
313 | $if(institute)$ | ||
314 | \providecommand{\institute}[1]{} | ||
315 | \institute{$for(institute)$$institute$$sep$ \and $endfor$} | ||
316 | $endif$ | ||
317 | \date{$date$} | ||
318 | $if(beamer)$ | ||
319 | $if(titlegraphic)$ | ||
320 | \titlegraphic{\includegraphics{$titlegraphic$}} | ||
321 | $endif$ | ||
322 | $if(logo)$ | ||
323 | \logo{\includegraphics{$logo$}} | ||
324 | $endif$ | ||
325 | $endif$ | ||
326 | |||
327 | \begin{document} | ||
328 | $if(title)$ | ||
329 | $if(beamer)$ | ||
330 | \frame{\titlepage} | ||
331 | $else$ | ||
332 | \maketitle | ||
333 | $endif$ | ||
334 | $if(abstract)$ | ||
335 | \begin{abstract} | ||
336 | $abstract$ | ||
337 | \end{abstract} | ||
338 | $endif$ | ||
339 | $endif$ | ||
340 | |||
341 | $for(include-before)$ | ||
342 | $include-before$ | ||
343 | |||
344 | $endfor$ | ||
345 | $if(toc)$ | ||
346 | $if(beamer)$ | ||
347 | \begin{frame} | ||
348 | \tableofcontents[hideallsubsections] | ||
349 | \end{frame} | ||
350 | $else$ | ||
351 | { | ||
352 | $if(colorlinks)$ | ||
353 | \hypersetup{linkcolor=$if(toccolor)$$toccolor$$else$$endif$} | ||
354 | $endif$ | ||
355 | \setcounter{tocdepth}{$toc-depth$} | ||
356 | \tableofcontents | ||
357 | } | ||
358 | $endif$ | ||
359 | $endif$ | ||
360 | $if(lot)$ | ||
361 | \listoftables | ||
362 | $endif$ | ||
363 | $if(lof)$ | ||
364 | \listoffigures | ||
365 | $endif$ | ||
366 | $body$ | ||
367 | |||
368 | $if(natbib)$ | ||
369 | $if(bibliography)$ | ||
370 | $if(biblio-title)$ | ||
371 | $if(book-class)$ | ||
372 | \renewcommand\bibname{$biblio-title$} | ||
373 | $else$ | ||
374 | \renewcommand\refname{$biblio-title$} | ||
375 | $endif$ | ||
376 | $endif$ | ||
377 | $if(beamer)$ | ||
378 | \begin{frame}[allowframebreaks]{$biblio-title$} | ||
379 | \bibliographytrue | ||
380 | $endif$ | ||
381 | \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} | ||
382 | $if(beamer)$ | ||
383 | \end{frame} | ||
384 | $endif$ | ||
385 | |||
386 | $endif$ | ||
387 | $endif$ | ||
388 | $if(biblatex)$ | ||
389 | $if(beamer)$ | ||
390 | \begin{frame}[allowframebreaks]{$biblio-title$} | ||
391 | \bibliographytrue | ||
392 | \printbibliography[heading=none] | ||
393 | \end{frame} | ||
394 | $else$ | ||
395 | \printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$ | ||
396 | $endif$ | ||
397 | |||
398 | $endif$ | ||
399 | $for(include-after)$ | ||
400 | $include-after$ | ||
401 | |||
402 | $endfor$ | ||
403 | \end{document} | ||
diff --git a/default.man b/default.man new file mode 100644 index 0000000..44b5919 --- /dev/null +++ b/default.man | |||
@@ -0,0 +1,30 @@ | |||
1 | $if(has-tables)$ | ||
2 | .\"t | ||
3 | $endif$ | ||
4 | $if(pandoc-version)$ | ||
5 | .\" Automatically generated by Pandoc $pandoc-version$ | ||
6 | .\" | ||
7 | $endif$ | ||
8 | $if(adjusting)$ | ||
9 | .ad $adjusting$ | ||
10 | $endif$ | ||
11 | .TH "$title$" "$section$" "$date$" "$footer$" "$header$" | ||
12 | $if(hyphenate)$ | ||
13 | .hy | ||
14 | $else$ | ||
15 | .nh \" Turn off hyphenation by default. | ||
16 | $endif$ | ||
17 | $for(header-includes)$ | ||
18 | $header-includes$ | ||
19 | $endfor$ | ||
20 | $for(include-before)$ | ||
21 | $include-before$ | ||
22 | $endfor$ | ||
23 | $body$ | ||
24 | $for(include-after)$ | ||
25 | $include-after$ | ||
26 | $endfor$ | ||
27 | $if(author)$ | ||
28 | .SH AUTHORS | ||
29 | $for(author)$$author$$sep$; $endfor$. | ||
30 | $endif$ | ||
diff --git a/default.markdown b/default.markdown new file mode 100644 index 0000000..9f6ca96 --- /dev/null +++ b/default.markdown | |||
@@ -0,0 +1,21 @@ | |||
1 | $if(titleblock)$ | ||
2 | $titleblock$ | ||
3 | |||
4 | $endif$ | ||
5 | $for(header-includes)$ | ||
6 | $header-includes$ | ||
7 | |||
8 | $endfor$ | ||
9 | $for(include-before)$ | ||
10 | $include-before$ | ||
11 | |||
12 | $endfor$ | ||
13 | $if(toc)$ | ||
14 | $table-of-contents$ | ||
15 | |||
16 | $endif$ | ||
17 | $body$ | ||
18 | $for(include-after)$ | ||
19 | |||
20 | $include-after$ | ||
21 | $endfor$ | ||
diff --git a/default.mediawiki b/default.mediawiki new file mode 100644 index 0000000..5d210fa --- /dev/null +++ b/default.mediawiki | |||
@@ -0,0 +1,13 @@ | |||
1 | $for(include-before)$ | ||
2 | $include-before$ | ||
3 | |||
4 | $endfor$ | ||
5 | $if(toc)$ | ||
6 | __TOC__ | ||
7 | |||
8 | $endif$ | ||
9 | $body$ | ||
10 | $for(include-after)$ | ||
11 | |||
12 | $include-after$ | ||
13 | $endfor$ | ||
diff --git a/default.ms b/default.ms new file mode 100644 index 0000000..c136843 --- /dev/null +++ b/default.ms | |||
@@ -0,0 +1,108 @@ | |||
1 | .\" **** Custom macro definitions ********************************* | ||
2 | .\" * Super/subscript | ||
3 | .\" (https://lists.gnu.org/archive/html/groff/2012-07/msg00046.html) | ||
4 | .ds { \v'-0.3m'\\s[\\n[.s]*9u/12u] | ||
5 | .ds } \s0\v'0.3m' | ||
6 | .ds < \v'0.3m'\s[\\n[.s]*9u/12u] | ||
7 | .ds > \s0\v'-0.3m' | ||
8 | .\" * Horizontal line | ||
9 | .de HLINE | ||
10 | .LP | ||
11 | .ce | ||
12 | \l'20' | ||
13 | .. | ||
14 | $if(highlighting-macros)$ | ||
15 | .\" * Syntax highlighting macros | ||
16 | $highlighting-macros$ | ||
17 | $endif$ | ||
18 | .\" **** Settings ************************************************* | ||
19 | .\" text width | ||
20 | .nr LL 5.5i | ||
21 | .\" left margin | ||
22 | .nr PO 1.25i | ||
23 | .\" top margin | ||
24 | .nr HM 1.25i | ||
25 | .\" bottom margin | ||
26 | .nr FM 1.25i | ||
27 | .\" header/footer width | ||
28 | .nr LT \n[LL] | ||
29 | .\" point size | ||
30 | .nr PS $if(pointsize)$$pointsize$$else$10p$endif$ | ||
31 | .\" line height | ||
32 | .nr VS $if(lineheight)$$lineheight$$else$12p$endif$ | ||
33 | .\" font family: A, BM, H, HN, N, P, T, ZCM | ||
34 | .fam $if(fontfamily)$$fontfamily$$else$T$endif$ | ||
35 | .\" paragraph indent | ||
36 | .nr PI $if(indent)$$indent$$else$2m$endif$ | ||
37 | .\" interparagraph space | ||
38 | .nr PD 0.33v | ||
39 | .\" footnote width | ||
40 | .nr FL \n[LL] | ||
41 | .\" footnote point size | ||
42 | .nr FPS (\n[PS] - 2000) | ||
43 | .\" color used for strikeout | ||
44 | .defcolor strikecolor rgb 0.7 0.7 0.7 | ||
45 | .\" color for links (rgb) | ||
46 | .ds PDFHREF.COLOUR 0.35 0.00 0.60 | ||
47 | .\" border for links (default none) | ||
48 | .ds PDFHREF.BORDER 0 0 0 | ||
49 | .\" point size difference between heading levels | ||
50 | .nr PSINCR 1p | ||
51 | .\" heading level above which point size no longer changes | ||
52 | .nr GROWPS 2 | ||
53 | .\" comment these out if you want a dot after section numbers: | ||
54 | .als SN SN-NO-DOT | ||
55 | .als SN-STYLE SN-NO-DOT | ||
56 | .\" pdf outline fold level | ||
57 | .nr PDFOUTLINE.FOLDLEVEL 3 | ||
58 | .\" start out in outline view | ||
59 | .pdfview /PageMode /UseOutlines | ||
60 | .\" *************************************************************** | ||
61 | .\" PDF metadata | ||
62 | .pdfinfo /Title "$title-meta$" | ||
63 | .pdfinfo /Author "$author-meta$" | ||
64 | $if(adjusting)$ | ||
65 | .ad $adjusting$ | ||
66 | $endif$ | ||
67 | $if(hyphenate)$ | ||
68 | .hy | ||
69 | $else$ | ||
70 | .nh \" Turn off hyphenation by default. | ||
71 | $endif$ | ||
72 | $if(has-inline-math)$ | ||
73 | .EQ | ||
74 | delim @@ | ||
75 | .EN | ||
76 | $endif$ | ||
77 | $for(header-includes)$ | ||
78 | $header-includes$ | ||
79 | $endfor$ | ||
80 | $if(title)$ | ||
81 | .TL | ||
82 | $title$ | ||
83 | $endif$ | ||
84 | $for(author)$ | ||
85 | .AU | ||
86 | $author$ | ||
87 | $endfor$ | ||
88 | $if(date)$ | ||
89 | .ND "$date$" | ||
90 | $endif$ | ||
91 | $if(abstract)$ | ||
92 | .AB | ||
93 | $abstract$ | ||
94 | .AE | ||
95 | $endif$ | ||
96 | .\" 1 column (use .2C for two column) | ||
97 | .1C | ||
98 | $for(include-before)$ | ||
99 | $include-before$ | ||
100 | $endfor$ | ||
101 | $body$ | ||
102 | $if(toc)$ | ||
103 | .TC | ||
104 | $endif$ | ||
105 | $for(include-after)$ | ||
106 | $include-after$ | ||
107 | $endfor$ | ||
108 | .pdfsync | ||
diff --git a/default.muse b/default.muse new file mode 100644 index 0000000..05534ad --- /dev/null +++ b/default.muse | |||
@@ -0,0 +1,44 @@ | |||
1 | $if(author)$ | ||
2 | #author $author$ | ||
3 | $endif$ | ||
4 | $if(title)$ | ||
5 | #title $title$ | ||
6 | $endif$ | ||
7 | $if(lang)$ | ||
8 | #lang $lang$ | ||
9 | $endif$ | ||
10 | $if(LISTtitle)$ | ||
11 | #LISTtitle $LISTtitle$ | ||
12 | $endif$ | ||
13 | $if(subtitle)$ | ||
14 | #subtitle $subtitle$ | ||
15 | $endif$ | ||
16 | $if(SORTauthors)$ | ||
17 | #SORTauthors $SORTauthors$ | ||
18 | $endif$ | ||
19 | $if(SORTtopics)$ | ||
20 | #SORTtopics $SORTtopics$ | ||
21 | $endif$ | ||
22 | $if(date)$ | ||
23 | #date $date$ | ||
24 | $endif$ | ||
25 | $if(notes)$ | ||
26 | #notes $notes$ | ||
27 | $endif$ | ||
28 | $if(source)$ | ||
29 | #source $source$ | ||
30 | $endif$ | ||
31 | |||
32 | $for(header-includes)$ | ||
33 | $header-includes$ | ||
34 | |||
35 | $endfor$ | ||
36 | $for(include-before)$ | ||
37 | $include-before$ | ||
38 | |||
39 | $endfor$ | ||
40 | $body$ | ||
41 | $for(include-after)$ | ||
42 | |||
43 | $include-after$ | ||
44 | $endfor$ | ||
diff --git a/default.opendocument b/default.opendocument new file mode 100644 index 0000000..e0bc5c1 --- /dev/null +++ b/default.opendocument | |||
@@ -0,0 +1,161 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" office:version="1.2"> | ||
3 | <office:font-face-decls> | ||
4 | <style:font-face style:name="Courier New" style:font-family-generic="modern" style:font-pitch="fixed" svg:font-family="'Courier New'" /> | ||
5 | </office:font-face-decls> | ||
6 | <office:automatic-styles> | ||
7 | $automatic-styles$ | ||
8 | </office:automatic-styles> | ||
9 | $for(header-includes)$ | ||
10 | $header-includes$ | ||
11 | $endfor$ | ||
12 | <office:body> | ||
13 | <office:text> | ||
14 | $if(title)$ | ||
15 | <text:p text:style-name="Title">$title$</text:p> | ||
16 | $endif$ | ||
17 | $for(author)$ | ||
18 | <text:p text:style-name="Author">$author$</text:p> | ||
19 | $endfor$ | ||
20 | $if(date)$ | ||
21 | <text:p text:style-name="Date">$date$</text:p> | ||
22 | $endif$ | ||
23 | $for(include-before)$ | ||
24 | $include-before$ | ||
25 | $endfor$ | ||
26 | $if(toc)$ | ||
27 | <text:table-of-content> | ||
28 | <text:table-of-content-source text:outline-level="10"> | ||
29 | <text:index-title-template text:style-name="Contents_20_Heading"> | ||
30 | $toc-title$ | ||
31 | </text:index-title-template> | ||
32 | <text:table-of-content-entry-template text:outline-level="1" | ||
33 | text:style-name="Contents_20_1"> | ||
34 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
35 | <text:index-entry-chapter /> | ||
36 | <text:index-entry-text /> | ||
37 | <text:index-entry-link-end /> | ||
38 | <text:index-entry-tab-stop style:type="right" | ||
39 | style:leader-char="." /> | ||
40 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
41 | <text:index-entry-page-number /> | ||
42 | <text:index-entry-link-end /> | ||
43 | </text:table-of-content-entry-template> | ||
44 | <text:table-of-content-entry-template text:outline-level="2" | ||
45 | text:style-name="Contents_20_2"> | ||
46 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
47 | <text:index-entry-chapter /> | ||
48 | <text:index-entry-text /> | ||
49 | <text:index-entry-link-end /> | ||
50 | <text:index-entry-tab-stop style:type="right" | ||
51 | style:leader-char="." /> | ||
52 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
53 | <text:index-entry-page-number /> | ||
54 | <text:index-entry-link-end /> | ||
55 | </text:table-of-content-entry-template> | ||
56 | <text:table-of-content-entry-template text:outline-level="3" | ||
57 | text:style-name="Contents_20_3"> | ||
58 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
59 | <text:index-entry-chapter /> | ||
60 | <text:index-entry-text /> | ||
61 | <text:index-entry-link-end /> | ||
62 | <text:index-entry-tab-stop style:type="right" | ||
63 | style:leader-char="." /> | ||
64 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
65 | <text:index-entry-page-number /> | ||
66 | <text:index-entry-link-end /> | ||
67 | </text:table-of-content-entry-template> | ||
68 | <text:table-of-content-entry-template text:outline-level="4" | ||
69 | text:style-name="Contents_20_4"> | ||
70 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
71 | <text:index-entry-chapter /> | ||
72 | <text:index-entry-text /> | ||
73 | <text:index-entry-link-end /> | ||
74 | <text:index-entry-tab-stop style:type="right" | ||
75 | style:leader-char="." /> | ||
76 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
77 | <text:index-entry-page-number /> | ||
78 | <text:index-entry-link-end /> | ||
79 | </text:table-of-content-entry-template> | ||
80 | <text:table-of-content-entry-template text:outline-level="5" | ||
81 | text:style-name="Contents_20_5"> | ||
82 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
83 | <text:index-entry-chapter /> | ||
84 | <text:index-entry-text /> | ||
85 | <text:index-entry-link-end /> | ||
86 | <text:index-entry-tab-stop style:type="right" | ||
87 | style:leader-char="." /> | ||
88 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
89 | <text:index-entry-page-number /> | ||
90 | <text:index-entry-link-end /> | ||
91 | </text:table-of-content-entry-template> | ||
92 | <text:table-of-content-entry-template text:outline-level="6" | ||
93 | text:style-name="Contents_20_6"> | ||
94 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
95 | <text:index-entry-chapter /> | ||
96 | <text:index-entry-text /> | ||
97 | <text:index-entry-link-end /> | ||
98 | <text:index-entry-tab-stop style:type="right" | ||
99 | style:leader-char="." /> | ||
100 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
101 | <text:index-entry-page-number /> | ||
102 | <text:index-entry-link-end /> | ||
103 | </text:table-of-content-entry-template> | ||
104 | <text:table-of-content-entry-template text:outline-level="7" | ||
105 | text:style-name="Contents_20_7"> | ||
106 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
107 | <text:index-entry-chapter /> | ||
108 | <text:index-entry-text /> | ||
109 | <text:index-entry-link-end /> | ||
110 | <text:index-entry-tab-stop style:type="right" | ||
111 | style:leader-char="." /> | ||
112 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
113 | <text:index-entry-page-number /> | ||
114 | <text:index-entry-link-end /> | ||
115 | </text:table-of-content-entry-template> | ||
116 | <text:table-of-content-entry-template text:outline-level="8" | ||
117 | text:style-name="Contents_20_8"> | ||
118 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
119 | <text:index-entry-chapter /> | ||
120 | <text:index-entry-text /> | ||
121 | <text:index-entry-link-end /> | ||
122 | <text:index-entry-tab-stop style:type="right" | ||
123 | style:leader-char="." /> | ||
124 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
125 | <text:index-entry-page-number /> | ||
126 | <text:index-entry-link-end /> | ||
127 | </text:table-of-content-entry-template> | ||
128 | <text:table-of-content-entry-template text:outline-level="9" | ||
129 | text:style-name="Contents_20_9"> | ||
130 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
131 | <text:index-entry-chapter /> | ||
132 | <text:index-entry-text /> | ||
133 | <text:index-entry-link-end /> | ||
134 | <text:index-entry-tab-stop style:type="right" | ||
135 | style:leader-char="." /> | ||
136 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
137 | <text:index-entry-page-number /> | ||
138 | <text:index-entry-link-end /> | ||
139 | </text:table-of-content-entry-template> | ||
140 | <text:table-of-content-entry-template text:outline-level="10" | ||
141 | text:style-name="Contents_20_10"> | ||
142 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
143 | <text:index-entry-chapter /> | ||
144 | <text:index-entry-text /> | ||
145 | <text:index-entry-link-end /> | ||
146 | <text:index-entry-tab-stop style:type="right" | ||
147 | style:leader-char="." /> | ||
148 | <text:index-entry-link-start text:style-name="Internet_20_link" /> | ||
149 | <text:index-entry-page-number /> | ||
150 | <text:index-entry-link-end /> | ||
151 | </text:table-of-content-entry-template> | ||
152 | </text:table-of-content-source> | ||
153 | </text:table-of-content> | ||
154 | $endif$ | ||
155 | $body$ | ||
156 | $for(include-after)$ | ||
157 | $include-after$ | ||
158 | $endfor$ | ||
159 | </office:text> | ||
160 | </office:body> | ||
161 | </office:document-content> | ||
diff --git a/default.opml b/default.opml new file mode 100644 index 0000000..c3566d3 --- /dev/null +++ b/default.opml | |||
@@ -0,0 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <opml version="2.0"> | ||
3 | <head> | ||
4 | <title>$title$</title> | ||
5 | <dateModified>$date$</dateModified> | ||
6 | <ownerName>$for(author)$$author$$sep$; $endfor$</ownerName> | ||
7 | </head> | ||
8 | <body> | ||
9 | $body$ | ||
10 | </body> | ||
11 | </opml> | ||
diff --git a/default.org b/default.org new file mode 100644 index 0000000..860342e --- /dev/null +++ b/default.org | |||
@@ -0,0 +1,24 @@ | |||
1 | $if(title)$ | ||
2 | #+TITLE: $title$ | ||
3 | |||
4 | $endif$ | ||
5 | $if(author)$ | ||
6 | #+AUTHOR: $for(author)$$author$$sep$; $endfor$ | ||
7 | $endif$ | ||
8 | $if(date)$ | ||
9 | #+DATE: $date$ | ||
10 | |||
11 | $endif$ | ||
12 | $for(header-includes)$ | ||
13 | $header-includes$ | ||
14 | |||
15 | $endfor$ | ||
16 | $for(include-before)$ | ||
17 | $include-before$ | ||
18 | |||
19 | $endfor$ | ||
20 | $body$ | ||
21 | $for(include-after)$ | ||
22 | |||
23 | $include-after$ | ||
24 | $endfor$ | ||
diff --git a/default.plain b/default.plain new file mode 100644 index 0000000..9f6ca96 --- /dev/null +++ b/default.plain | |||
@@ -0,0 +1,21 @@ | |||
1 | $if(titleblock)$ | ||
2 | $titleblock$ | ||
3 | |||
4 | $endif$ | ||
5 | $for(header-includes)$ | ||
6 | $header-includes$ | ||
7 | |||
8 | $endfor$ | ||
9 | $for(include-before)$ | ||
10 | $include-before$ | ||
11 | |||
12 | $endfor$ | ||
13 | $if(toc)$ | ||
14 | $table-of-contents$ | ||
15 | |||
16 | $endif$ | ||
17 | $body$ | ||
18 | $for(include-after)$ | ||
19 | |||
20 | $include-after$ | ||
21 | $endfor$ | ||
diff --git a/default.revealjs b/default.revealjs new file mode 100644 index 0000000..9e3bc8d --- /dev/null +++ b/default.revealjs | |||
@@ -0,0 +1,272 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <meta name="generator" content="pandoc"> | ||
6 | $for(author-meta)$ | ||
7 | <meta name="author" content="$author-meta$"> | ||
8 | $endfor$ | ||
9 | $if(date-meta)$ | ||
10 | <meta name="dcterms.date" content="$date-meta$"> | ||
11 | $endif$ | ||
12 | $if(keywords)$ | ||
13 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$"> | ||
14 | $endif$ | ||
15 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
16 | <meta name="apple-mobile-web-app-capable" content="yes"> | ||
17 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | ||
18 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> | ||
19 | <link rel="stylesheet" href="$revealjs-url$/css/reveal.css"> | ||
20 | <style type="text/css"> | ||
21 | code{white-space: pre-wrap;} | ||
22 | span.smallcaps{font-variant: small-caps;} | ||
23 | span.underline{text-decoration: underline;} | ||
24 | div.line-block{white-space: pre-line;} | ||
25 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
26 | $if(quotes)$ | ||
27 | q { quotes: "“" "”" "‘" "’"; } | ||
28 | $endif$ | ||
29 | </style> | ||
30 | $if(highlighting-css)$ | ||
31 | <style type="text/css"> | ||
32 | $highlighting-css$ | ||
33 | </style> | ||
34 | $endif$ | ||
35 | $if(theme)$ | ||
36 | <link rel="stylesheet" href="$revealjs-url$/css/theme/$theme$.css" id="theme"> | ||
37 | $else$ | ||
38 | <link rel="stylesheet" href="$revealjs-url$/css/theme/black.css" id="theme"> | ||
39 | $endif$ | ||
40 | $for(css)$ | ||
41 | <link rel="stylesheet" href="$css$"/> | ||
42 | $endfor$ | ||
43 | <!-- Printing and PDF exports --> | ||
44 | <script> | ||
45 | var link = document.createElement( 'link' ); | ||
46 | link.rel = 'stylesheet'; | ||
47 | link.type = 'text/css'; | ||
48 | link.href = window.location.search.match( /print-pdf/gi ) ? '$revealjs-url$/css/print/pdf.css' : '$revealjs-url$/css/print/paper.css'; | ||
49 | document.getElementsByTagName( 'head' )[0].appendChild( link ); | ||
50 | </script> | ||
51 | <!--[if lt IE 9]> | ||
52 | <script src="$revealjs-url$/lib/js/html5shiv.js"></script> | ||
53 | <![endif]--> | ||
54 | $if(math)$ | ||
55 | $math$ | ||
56 | $endif$ | ||
57 | $for(header-includes)$ | ||
58 | $header-includes$ | ||
59 | $endfor$ | ||
60 | </head> | ||
61 | <body> | ||
62 | $for(include-before)$ | ||
63 | $include-before$ | ||
64 | $endfor$ | ||
65 | <div class="reveal"> | ||
66 | <div class="slides"> | ||
67 | |||
68 | $if(title)$ | ||
69 | <section id="$idprefix$title-slide"> | ||
70 | <h1 class="title">$title$</h1> | ||
71 | $if(subtitle)$ | ||
72 | <p class="subtitle">$subtitle$</p> | ||
73 | $endif$ | ||
74 | $for(author)$ | ||
75 | <p class="author">$author$</p> | ||
76 | $endfor$ | ||
77 | $if(date)$ | ||
78 | <p class="date">$date$</p> | ||
79 | $endif$ | ||
80 | </section> | ||
81 | $endif$ | ||
82 | $if(toc)$ | ||
83 | <section id="$idprefix$TOC"> | ||
84 | $table-of-contents$ | ||
85 | </section> | ||
86 | $endif$ | ||
87 | |||
88 | $body$ | ||
89 | </div> | ||
90 | </div> | ||
91 | |||
92 | <script src="$revealjs-url$/lib/js/head.min.js"></script> | ||
93 | <script src="$revealjs-url$/js/reveal.js"></script> | ||
94 | |||
95 | <script> | ||
96 | |||
97 | // Full list of configuration options available at: | ||
98 | // https://github.com/hakimel/reveal.js#configuration | ||
99 | Reveal.initialize({ | ||
100 | $if(controls)$ | ||
101 | // Display controls in the bottom right corner | ||
102 | controls: $controls$, | ||
103 | $endif$ | ||
104 | $if(progress)$ | ||
105 | // Display a presentation progress bar | ||
106 | progress: $progress$, | ||
107 | $endif$ | ||
108 | $if(slideNumber)$ | ||
109 | // Display the page number of the current slide | ||
110 | slideNumber: $slideNumber$, | ||
111 | $endif$ | ||
112 | // Push each slide change to the browser history | ||
113 | $if(history)$ | ||
114 | history: $history$, | ||
115 | $else$ | ||
116 | history: true, | ||
117 | $endif$ | ||
118 | $if(keyboard)$ | ||
119 | // Enable keyboard shortcuts for navigation | ||
120 | keyboard: $keyboard$, | ||
121 | $endif$ | ||
122 | $if(overview)$ | ||
123 | // Enable the slide overview mode | ||
124 | overview: $overview$, | ||
125 | $endif$ | ||
126 | $if(center)$ | ||
127 | // Vertical centering of slides | ||
128 | center: $center$, | ||
129 | $endif$ | ||
130 | $if(touch)$ | ||
131 | // Enables touch navigation on devices with touch input | ||
132 | touch: $touch$, | ||
133 | $endif$ | ||
134 | $if(loop)$ | ||
135 | // Loop the presentation | ||
136 | loop: $loop$, | ||
137 | $endif$ | ||
138 | $if(rtl)$ | ||
139 | // Change the presentation direction to be RTL | ||
140 | rtl: $rtl$, | ||
141 | $endif$ | ||
142 | $if(fragments)$ | ||
143 | // Turns fragments on and off globally | ||
144 | fragments: $fragments$, | ||
145 | $endif$ | ||
146 | $if(embedded)$ | ||
147 | // Flags if the presentation is running in an embedded mode, | ||
148 | // i.e. contained within a limited portion of the screen | ||
149 | embedded: $embedded$, | ||
150 | $endif$ | ||
151 | $if(help)$ | ||
152 | // Flags if we should show a help overlay when the questionmark | ||
153 | // key is pressed | ||
154 | help: $help$, | ||
155 | $endif$ | ||
156 | $if(showNotes)$ | ||
157 | // Flags if speaker notes should be visible to all viewers | ||
158 | showNotes: $showNotes$, | ||
159 | $endif$ | ||
160 | $if(autoSlide)$ | ||
161 | // Number of milliseconds between automatically proceeding to the | ||
162 | // next slide, disabled when set to 0, this value can be overwritten | ||
163 | // by using a data-autoslide attribute on your slides | ||
164 | autoSlide: $autoSlide$, | ||
165 | $endif$ | ||
166 | $if(autoSlideStoppable)$ | ||
167 | // Stop auto-sliding after user input | ||
168 | autoSlideStoppable: $autoSlideStoppable$, | ||
169 | $endif$ | ||
170 | $if(mouseWheel)$ | ||
171 | // Enable slide navigation via mouse wheel | ||
172 | mouseWheel: $mouseWheel$, | ||
173 | $endif$ | ||
174 | $if(hideAddressBar)$ | ||
175 | // Hides the address bar on mobile devices | ||
176 | hideAddressBar: $hideAddressBar$, | ||
177 | $endif$ | ||
178 | $if(previewLinks)$ | ||
179 | // Opens links in an iframe preview overlay | ||
180 | previewLinks: $previewLinks$, | ||
181 | $endif$ | ||
182 | $if(transition)$ | ||
183 | // Transition style | ||
184 | transition: '$transition$', // none/fade/slide/convex/concave/zoom | ||
185 | $endif$ | ||
186 | $if(transitionSpeed)$ | ||
187 | // Transition speed | ||
188 | transitionSpeed: '$transitionSpeed$', // default/fast/slow | ||
189 | $endif$ | ||
190 | $if(backgroundTransition)$ | ||
191 | // Transition style for full page slide backgrounds | ||
192 | backgroundTransition: '$backgroundTransition$', // none/fade/slide/convex/concave/zoom | ||
193 | $endif$ | ||
194 | $if(viewDistance)$ | ||
195 | // Number of slides away from the current that are visible | ||
196 | viewDistance: $viewDistance$, | ||
197 | $endif$ | ||
198 | $if(parallaxBackgroundImage)$ | ||
199 | // Parallax background image | ||
200 | parallaxBackgroundImage: '$parallaxBackgroundImage$', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'" | ||
201 | $endif$ | ||
202 | $if(parallaxBackgroundSize)$ | ||
203 | // Parallax background size | ||
204 | parallaxBackgroundSize: '$parallaxBackgroundSize$', // CSS syntax, e.g. "2100px 900px" | ||
205 | $endif$ | ||
206 | $if(parallaxBackgroundHorizontal)$ | ||
207 | // Amount to move parallax background (horizontal and vertical) on slide change | ||
208 | // Number, e.g. 100 | ||
209 | parallaxBackgroundHorizontal: $parallaxBackgroundHorizontal$, | ||
210 | $endif$ | ||
211 | $if(parallaxBackgroundVertical)$ | ||
212 | parallaxBackgroundVertical: $parallaxBackgroundVertical$, | ||
213 | $endif$ | ||
214 | $if(width)$ | ||
215 | // The "normal" size of the presentation, aspect ratio will be preserved | ||
216 | // when the presentation is scaled to fit different resolutions. Can be | ||
217 | // specified using percentage units. | ||
218 | width: $width$, | ||
219 | $endif$ | ||
220 | $if(height)$ | ||
221 | height: $height$, | ||
222 | $endif$ | ||
223 | $if(margin)$ | ||
224 | // Factor of the display size that should remain empty around the content | ||
225 | margin: $margin$, | ||
226 | $endif$ | ||
227 | $if(minScale)$ | ||
228 | // Bounds for smallest/largest possible scale to apply to content | ||
229 | minScale: $minScale$, | ||
230 | $endif$ | ||
231 | $if(maxScale)$ | ||
232 | maxScale: $maxScale$, | ||
233 | $endif$ | ||
234 | $if(mathjax)$ | ||
235 | math: { | ||
236 | mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js', | ||
237 | config: 'TeX-AMS_HTML-full', | ||
238 | tex2jax: { | ||
239 | inlineMath: [['\\(','\\)']], | ||
240 | displayMath: [['\\[','\\]']], | ||
241 | balanceBraces: true, | ||
242 | processEscapes: false, | ||
243 | processRefs: true, | ||
244 | processEnvironments: true, | ||
245 | preview: 'TeX', | ||
246 | skipTags: ['script','noscript','style','textarea','pre','code'], | ||
247 | ignoreClass: 'tex2jax_ignore', | ||
248 | processClass: 'tex2jax_process' | ||
249 | }, | ||
250 | }, | ||
251 | $endif$ | ||
252 | |||
253 | // Optional reveal.js plugins | ||
254 | dependencies: [ | ||
255 | { src: '$revealjs-url$/lib/js/classList.js', condition: function() { return !document.body.classList; } }, | ||
256 | { src: '$revealjs-url$/plugin/zoom-js/zoom.js', async: true }, | ||
257 | $if(notes-server)$ | ||
258 | { src: '$revealjs-url$/socket.io/socker.io.js', async: true }, | ||
259 | { src: '$revealjs-url$/plugin/notes-server/client.js', async: true }, | ||
260 | $endif$ | ||
261 | $if(mathjax)$ | ||
262 | { src: '$revealjs-url$/plugin/math/math.js', async: true }, | ||
263 | $endif$ | ||
264 | { src: '$revealjs-url$/plugin/notes/notes.js', async: true } | ||
265 | ] | ||
266 | }); | ||
267 | </script> | ||
268 | $for(include-after)$ | ||
269 | $include-after$ | ||
270 | $endfor$ | ||
271 | </body> | ||
272 | </html> | ||
diff --git a/default.rst b/default.rst new file mode 100644 index 0000000..30005d1 --- /dev/null +++ b/default.rst | |||
@@ -0,0 +1,48 @@ | |||
1 | $if(title)$ | ||
2 | $title$ | ||
3 | |||
4 | $endif$ | ||
5 | $for(author)$ | ||
6 | :Author: $author$ | ||
7 | $endfor$ | ||
8 | $if(date)$ | ||
9 | :Date: $date$ | ||
10 | $endif$ | ||
11 | $if(author)$ | ||
12 | |||
13 | $else$ | ||
14 | $if(date)$ | ||
15 | |||
16 | $endif$ | ||
17 | $endif$ | ||
18 | $if(math)$ | ||
19 | .. role:: math(raw) | ||
20 | :format: html latex | ||
21 | .. | ||
22 | |||
23 | $endif$ | ||
24 | $if(rawtex)$ | ||
25 | .. role:: raw-latex(raw) | ||
26 | :format: latex | ||
27 | .. | ||
28 | |||
29 | $endif$ | ||
30 | $for(include-before)$ | ||
31 | $include-before$ | ||
32 | |||
33 | $endfor$ | ||
34 | $if(toc)$ | ||
35 | .. contents:: | ||
36 | :depth: $toc-depth$ | ||
37 | .. | ||
38 | |||
39 | $endif$ | ||
40 | $for(header-includes)$ | ||
41 | $header-includes$ | ||
42 | |||
43 | $endfor$ | ||
44 | $body$ | ||
45 | $for(include-after)$ | ||
46 | |||
47 | $include-after$ | ||
48 | $endfor$ | ||
diff --git a/default.rtf b/default.rtf new file mode 100644 index 0000000..a7f7937 --- /dev/null +++ b/default.rtf | |||
@@ -0,0 +1,30 @@ | |||
1 | {\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}} | ||
2 | {\colortbl;\red255\green0\blue0;\red0\green0\blue255;} | ||
3 | \widowctrl\hyphauto | ||
4 | $for(header-includes)$ | ||
5 | $header-includes$ | ||
6 | $endfor$ | ||
7 | |||
8 | $if(title)$ | ||
9 | {\pard \qc \f0 \sa180 \li0 \fi0 \b \fs36 $title$\par} | ||
10 | $endif$ | ||
11 | $for(author)$ | ||
12 | {\pard \qc \f0 \sa180 \li0 \fi0 $author$\par} | ||
13 | $endfor$ | ||
14 | $if(date)$ | ||
15 | {\pard \qc \f0 \sa180 \li0 \fi0 $date$\par} | ||
16 | $endif$ | ||
17 | $if(spacer)$ | ||
18 | {\pard \ql \f0 \sa180 \li0 \fi0 \par} | ||
19 | $endif$ | ||
20 | $if(toc)$ | ||
21 | $table-of-contents$ | ||
22 | $endif$ | ||
23 | $for(include-before)$ | ||
24 | $include-before$ | ||
25 | $endfor$ | ||
26 | $body$ | ||
27 | $for(include-after)$ | ||
28 | $include-after$ | ||
29 | $endfor$ | ||
30 | } | ||
diff --git a/default.s5 b/default.s5 new file mode 100644 index 0000000..33e5397 --- /dev/null +++ b/default.s5 | |||
@@ -0,0 +1,92 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
2 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
3 | <head> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
5 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
6 | <meta name="generator" content="pandoc" /> | ||
7 | $for(author-meta)$ | ||
8 | <meta name="version" content="S5 1.1" /> | ||
9 | <meta name="author" content="$author-meta$" /> | ||
10 | $endfor$ | ||
11 | $if(date-meta)$ | ||
12 | <meta name="date" content="$date-meta$" /> | ||
13 | $endif$ | ||
14 | $if(keywords)$ | ||
15 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
16 | $endif$ | ||
17 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
18 | <style type="text/css"> | ||
19 | code{white-space: pre-wrap;} | ||
20 | span.smallcaps{font-variant: small-caps;} | ||
21 | span.underline{text-decoration: underline;} | ||
22 | div.line-block{white-space: pre-line;} | ||
23 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
24 | $if(quotes)$ | ||
25 | q { quotes: "“" "”" "‘" "’"; } | ||
26 | $endif$ | ||
27 | </style> | ||
28 | <!-- configuration parameters --> | ||
29 | <meta name="defaultView" content="slideshow" /> | ||
30 | <meta name="controlVis" content="hidden" /> | ||
31 | $if(highlighting-css)$ | ||
32 | <style type="text/css"> | ||
33 | $highlighting-css$ | ||
34 | </style> | ||
35 | $endif$ | ||
36 | $for(css)$ | ||
37 | <link rel="stylesheet" href="$css$" type="text/css" /> | ||
38 | $endfor$ | ||
39 | <!-- style sheet links --> | ||
40 | <link rel="stylesheet" href="$s5-url$/slides.css" type="text/css" media="projection" id="slideProj" /> | ||
41 | <link rel="stylesheet" href="$s5-url$/outline.css" type="text/css" media="screen" id="outlineStyle" /> | ||
42 | <link rel="stylesheet" href="$s5-url$/print.css" type="text/css" media="print" id="slidePrint" /> | ||
43 | <link rel="stylesheet" href="$s5-url$/opera.css" type="text/css" media="projection" id="operaFix" /> | ||
44 | <!-- S5 JS --> | ||
45 | <script src="$s5-url$/slides.js" type="text/javascript"></script> | ||
46 | $if(math)$ | ||
47 | $math$ | ||
48 | $endif$ | ||
49 | $for(header-includes)$ | ||
50 | $header-includes$ | ||
51 | $endfor$ | ||
52 | </head> | ||
53 | <body> | ||
54 | $for(include-before)$ | ||
55 | $include-before$ | ||
56 | $endfor$ | ||
57 | <div class="layout"> | ||
58 | <div id="controls"></div> | ||
59 | <div id="currentSlide"></div> | ||
60 | <div id="header"></div> | ||
61 | <div id="footer"> | ||
62 | <h1>$date$</h1> | ||
63 | <h2>$title$</h2> | ||
64 | </div> | ||
65 | </div> | ||
66 | <div class="presentation"> | ||
67 | $if(title)$ | ||
68 | <div class="title-slide slide"> | ||
69 | <h1 class="title">$title$</h1> | ||
70 | $if(subtitle)$ | ||
71 | <h2 class="subtitle">$subtitle$</h2> | ||
72 | $endif$ | ||
73 | $if(author)$ | ||
74 | <h3 class="author">$for(author)$$author$$sep$<br/>$endfor$</h3> | ||
75 | $endif$ | ||
76 | $if(date)$ | ||
77 | <h4 class="date">$date$</h4> | ||
78 | $endif$ | ||
79 | </div> | ||
80 | $endif$ | ||
81 | $if(toc)$ | ||
82 | <div class="slide" id="$idprefix$TOC"> | ||
83 | $table-of-contents$ | ||
84 | </div> | ||
85 | $endif$ | ||
86 | $body$ | ||
87 | $for(include-after)$ | ||
88 | $include-after$ | ||
89 | $endfor$ | ||
90 | </div> | ||
91 | </body> | ||
92 | </html> | ||
diff --git a/default.slideous b/default.slideous new file mode 100644 index 0000000..4c5e6a7 --- /dev/null +++ b/default.slideous | |||
@@ -0,0 +1,96 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
3 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
4 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
5 | <head> | ||
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
7 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
8 | <meta name="generator" content="pandoc" /> | ||
9 | $for(author-meta)$ | ||
10 | <meta name="author" content="$author-meta$" /> | ||
11 | $endfor$ | ||
12 | $if(date-meta)$ | ||
13 | <meta name="date" content="$date-meta$" /> | ||
14 | $endif$ | ||
15 | $if(keywords)$ | ||
16 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
17 | $endif$ | ||
18 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
19 | <style type="text/css"> | ||
20 | code{white-space: pre-wrap;} | ||
21 | span.smallcaps{font-variant: small-caps;} | ||
22 | span.underline{text-decoration: underline;} | ||
23 | div.line-block{white-space: pre-line;} | ||
24 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
25 | $if(quotes)$ | ||
26 | q { quotes: "“" "”" "‘" "’"; } | ||
27 | $endif$ | ||
28 | </style> | ||
29 | $if(highlighting-css)$ | ||
30 | <style type="text/css"> | ||
31 | $highlighting-css$ | ||
32 | </style> | ||
33 | $endif$ | ||
34 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
35 | href="$slideous-url$/slideous.css" /> | ||
36 | $for(css)$ | ||
37 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
38 | href="$css$" /> | ||
39 | $endfor$ | ||
40 | $if(math)$ | ||
41 | $math$ | ||
42 | $endif$ | ||
43 | $for(header-includes)$ | ||
44 | $header-includes$ | ||
45 | $endfor$ | ||
46 | <script src="$slideous-url$/slideous.js" | ||
47 | charset="utf-8" type="text/javascript"></script> | ||
48 | $if(duration)$ | ||
49 | <meta name="duration" content="$duration$" /> | ||
50 | $endif$ | ||
51 | </head> | ||
52 | <body> | ||
53 | $for(include-before)$ | ||
54 | $include-before$ | ||
55 | $endfor$ | ||
56 | <div id="statusbar"> | ||
57 | <span style="float:right;"> | ||
58 | <span style="margin-right:4em;font-weight:bold;"><span id="slideidx"></span> of {$$slidecount}</span> | ||
59 | <button id="homebutton" title="first slide">1</button> | ||
60 | <button id="prevslidebutton" title="previous slide">«</button> | ||
61 | <button id="previtembutton" title="previous item">‹</button> | ||
62 | <button id="nextitembutton" title="next item">›</button> | ||
63 | <button id="nextslidebutton" title="next slide">»</button> | ||
64 | <button id="endbutton" title="last slide">{$$slidecount}</button> | ||
65 | <button id="incfontbutton" title="content">A+</button> | ||
66 | <button id="decfontbutton" title="first slide">A-</button> | ||
67 | <select id="tocbox" size="1"><option></option></select> | ||
68 | </span> | ||
69 | <span id="eos">½</span> | ||
70 | <span title="{$$location}, {$$date}">{$$title}, {$$author}</span> | ||
71 | </div> | ||
72 | $if(title)$ | ||
73 | <div class="slide titlepage"> | ||
74 | <h1 class="title">$title$</h1> | ||
75 | $if(subtitle)$ | ||
76 | <h1 class="subtitle">$subtitle$</h1> | ||
77 | $endif$ | ||
78 | <p class="author"> | ||
79 | $for(author)$$author$$sep$<br/>$endfor$ | ||
80 | </p> | ||
81 | $if(date)$ | ||
82 | <p class="date">$date$</p> | ||
83 | $endif$ | ||
84 | </div> | ||
85 | $endif$ | ||
86 | $if(toc)$ | ||
87 | <div class="slide" id="$idprefix$TOC"> | ||
88 | $table-of-contents$ | ||
89 | </div> | ||
90 | $endif$ | ||
91 | $body$ | ||
92 | $for(include-after)$ | ||
93 | $include-after$ | ||
94 | $endfor$ | ||
95 | </body> | ||
96 | </html> | ||
diff --git a/default.slidy b/default.slidy new file mode 100644 index 0000000..5bc237c --- /dev/null +++ b/default.slidy | |||
@@ -0,0 +1,82 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
3 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
4 | <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> | ||
5 | <head> | ||
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
7 | <meta http-equiv="Content-Style-Type" content="text/css" /> | ||
8 | <meta name="generator" content="pandoc" /> | ||
9 | $for(author-meta)$ | ||
10 | <meta name="author" content="$author-meta$" /> | ||
11 | $endfor$ | ||
12 | $if(date-meta)$ | ||
13 | <meta name="date" content="$date-meta$" /> | ||
14 | $endif$ | ||
15 | $if(keywords)$ | ||
16 | <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | ||
17 | $endif$ | ||
18 | <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | ||
19 | <style type="text/css"> | ||
20 | code{white-space: pre-wrap;} | ||
21 | span.smallcaps{font-variant: small-caps;} | ||
22 | span.underline{text-decoration: underline;} | ||
23 | div.line-block{white-space: pre-line;} | ||
24 | div.column{display: inline-block; vertical-align: top; width: 50%;} | ||
25 | $if(quotes)$ | ||
26 | q { quotes: "“" "”" "‘" "’"; } | ||
27 | $endif$ | ||
28 | </style> | ||
29 | $if(highlighting-css)$ | ||
30 | <style type="text/css"> | ||
31 | $highlighting-css$ | ||
32 | </style> | ||
33 | $endif$ | ||
34 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
35 | href="$slidy-url$/styles/slidy.css" /> | ||
36 | $for(css)$ | ||
37 | <link rel="stylesheet" type="text/css" media="screen, projection, print" | ||
38 | href="$css$" /> | ||
39 | $endfor$ | ||
40 | $if(math)$ | ||
41 | $math$ | ||
42 | $endif$ | ||
43 | $for(header-includes)$ | ||
44 | $header-includes$ | ||
45 | $endfor$ | ||
46 | <script src="$slidy-url$/scripts/slidy.js" | ||
47 | charset="utf-8" type="text/javascript"></script> | ||
48 | $if(duration)$ | ||
49 | <meta name="duration" content="$duration$" /> | ||
50 | $endif$ | ||
51 | </head> | ||
52 | <body> | ||
53 | $for(include-before)$ | ||
54 | $include-before$ | ||
55 | $endfor$ | ||
56 | $if(title)$ | ||
57 | <div class="slide titlepage"> | ||
58 | <h1 class="title">$title$</h1> | ||
59 | $if(subtitle)$ | ||
60 | <p class="subtitle">$subtitle$</p> | ||
61 | $endif$ | ||
62 | $if(author)$ | ||
63 | <p class="author"> | ||
64 | $for(author)$$author$$sep$<br/>$endfor$ | ||
65 | </p> | ||
66 | $endif$ | ||
67 | $if(date)$ | ||
68 | <p class="date">$date$</p> | ||
69 | $endif$ | ||
70 | </div> | ||
71 | $endif$ | ||
72 | $if(toc)$ | ||
73 | <div class="slide" id="$idprefix$TOC"> | ||
74 | $table-of-contents$ | ||
75 | </div> | ||
76 | $endif$ | ||
77 | $body$ | ||
78 | $for(include-after)$ | ||
79 | $include-after$ | ||
80 | $endfor$ | ||
81 | </body> | ||
82 | </html> | ||
diff --git a/default.tei b/default.tei new file mode 100644 index 0000000..3778dcc --- /dev/null +++ b/default.tei | |||
@@ -0,0 +1,39 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$> | ||
3 | <teiHeader> | ||
4 | <fileDesc> | ||
5 | <titleStmt> | ||
6 | $if(title)$ | ||
7 | <title>$title$</title> | ||
8 | $endif$ | ||
9 | $for(author)$ | ||
10 | $author$ | ||
11 | $endfor$ | ||
12 | </titleStmt> | ||
13 | <publicationStmt> | ||
14 | <p>$if(publicationStmt)$$publicationStmt$$endif$</p> | ||
15 | $if(license)$ | ||
16 | <availability><licence>$license$</licence></availability> | ||
17 | $endif$ | ||
18 | </publicationStmt> | ||
19 | <sourceDesc> | ||
20 | $if(sourceDesc)$ | ||
21 | $sourceDesc$ | ||
22 | $else$ | ||
23 | <p>Produced by pandoc.</p> | ||
24 | $endif$ | ||
25 | </sourceDesc> | ||
26 | </fileDesc> | ||
27 | </teiHeader> | ||
28 | <text> | ||
29 | $for(include-before)$ | ||
30 | $include-before$ | ||
31 | $endfor$ | ||
32 | <body> | ||
33 | $body$ | ||
34 | </body> | ||
35 | $for(include-after)$ | ||
36 | $include-after$ | ||
37 | $endfor$ | ||
38 | </text> | ||
39 | </TEI> | ||
diff --git a/default.texinfo b/default.texinfo new file mode 100644 index 0000000..458d4fd --- /dev/null +++ b/default.texinfo | |||
@@ -0,0 +1,64 @@ | |||
1 | \input texinfo | ||
2 | @documentencoding UTF-8 | ||
3 | $for(header-includes)$ | ||
4 | $header-includes$ | ||
5 | $endfor$ | ||
6 | |||
7 | $if(strikeout)$ | ||
8 | @macro textstrikeout{text} | ||
9 | ~~\text\~~ | ||
10 | @end macro | ||
11 | |||
12 | $endif$ | ||
13 | $if(subscript)$ | ||
14 | @macro textsubscript{text} | ||
15 | @iftex | ||
16 | @textsubscript{\text\} | ||
17 | @end iftex | ||
18 | @ifnottex | ||
19 | _@{\text\@} | ||
20 | @end ifnottex | ||
21 | @end macro | ||
22 | |||
23 | $endif$ | ||
24 | $if(superscript)$ | ||
25 | @macro textsuperscript{text} | ||
26 | @iftex | ||
27 | @textsuperscript{\text\} | ||
28 | @end iftex | ||
29 | @ifnottex | ||
30 | ^@{\text\@} | ||
31 | @end ifnottex | ||
32 | @end macro | ||
33 | |||
34 | $endif$ | ||
35 | @ifnottex | ||
36 | @paragraphindent 0 | ||
37 | @end ifnottex | ||
38 | $if(titlepage)$ | ||
39 | @titlepage | ||
40 | @title $title$ | ||
41 | $for(author)$ | ||
42 | @author $author$ | ||
43 | $endfor$ | ||
44 | $if(date)$ | ||
45 | $date$ | ||
46 | $endif$ | ||
47 | @end titlepage | ||
48 | |||
49 | $endif$ | ||
50 | $for(include-before)$ | ||
51 | $include-before$ | ||
52 | |||
53 | $endfor$ | ||
54 | $if(toc)$ | ||
55 | @contents | ||
56 | |||
57 | $endif$ | ||
58 | $body$ | ||
59 | $for(include-after)$ | ||
60 | |||
61 | $include-after$ | ||
62 | $endfor$ | ||
63 | |||
64 | @bye | ||
diff --git a/default.textile b/default.textile new file mode 100644 index 0000000..69bd05b --- /dev/null +++ b/default.textile | |||
@@ -0,0 +1,9 @@ | |||
1 | $for(include-before)$ | ||
2 | $include-before$ | ||
3 | |||
4 | $endfor$ | ||
5 | $body$ | ||
6 | $for(include-after)$ | ||
7 | |||
8 | $include-after$ | ||
9 | $endfor$ | ||
diff --git a/default.zimwiki b/default.zimwiki new file mode 100644 index 0000000..30824bd --- /dev/null +++ b/default.zimwiki | |||
@@ -0,0 +1,16 @@ | |||
1 | Content-Type: text/x-zim-wiki | ||
2 | Wiki-Format: zim 0.4 | ||
3 | |||
4 | $for(include-before)$ | ||
5 | $include-before$ | ||
6 | |||
7 | $endfor$ | ||
8 | $if(toc)$ | ||
9 | __TOC__ | ||
10 | |||
11 | $endif$ | ||
12 | $body$ | ||
13 | $for(include-after)$ | ||
14 | |||
15 | $include-after$ | ||
16 | $endfor$ | ||