Initial TEI template.

This commit is contained in:
csforste 2016-01-04 20:06:19 -05:00
parent fea830fcd2
commit 71a7bcdbf6
5 changed files with 59 additions and 0 deletions

View file

@ -181,6 +181,11 @@ $endif$
</footer>
</section>
$endif$
$if(toc)$
<section id="$idprefix$TOC">
$toc$
</section>
$endif$
$for(include-before)$
$include-before$
$endfor$

View file

@ -72,6 +72,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$

View file

@ -77,6 +77,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$

View file

@ -63,6 +63,11 @@ $if(date)$
$endif$
</div>
$endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$
$for(include-after)$
$include-after$

39
default.tei Normal file
View file

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$>
<teiHeader>
<fileDesc>
<titleStmt>
$if(title)$
<title>$title$</title>
$endif$
$for(author)$
$author$
$endfor$
</titleStmt>
<publicationStmt>
<p>$if(publicationStmt)$$publicationStmt$$endif$</p>
$if(license)$
<availability><licence>$license$</licence></availability>
$endif$
</publicationStmt>
<sourceDesc>
$if(sourceDesc)$
$sourceDesc$
$else$
<p>Produced by pandoc.</p>
$endif$
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
$for(include-before)$
$include-before$
$endfor$
<body>
$body$
</body>
$for(include-after)$
$include-after$
$endfor$
</text>
</TEI>