Example TEI Files
Minimal Example
tip
If you want to test this file on LAUDATIO, save the contents to a file called document1.xml or download our example file (you may need to right-click in order to download the file).
Note that this minimal example includes all fields required by the LAUDATIO data ingestion pipeline, even if they are optional according to the schema. (That is, this example contains all tags/attributes marked with ‼️ in the metadata model description.)
<?xml version='1.0' encoding='utf-8'?>
<?xml-model href="../rng/document.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader style="Prose" type="DocumentHeader">
<fileDesc xml:id="document1">
<titleStmt>
<title>Minimal Demo Document</title>
<author>
<persName>
<forename>Max</forename>
<surname>Mustermann</surname>
</persName>
</author>
</titleStmt>
<extent type="Tokens">1234</extent>
<publicationStmt>
<publisher>ABC Druck</publisher>
</publicationStmt>
<sourceDesc>
<msDesc>
<msIdentifier>
<msName>Base manuscript for the transcription (A). Continuation (1434-1441)
and some Additions come from ms. a: Nürnberg, Stadtbibliothek, Cod. Amb. 237.4°</msName>
</msIdentifier>
</msDesc>
</sourceDesc>
</fileDesc>
<profileDesc>
<langUsage>
<language ident="de" style="Language">German</language>
</langUsage>
</profileDesc>
<encodingDesc>
<schemaSpec ident="AnnotationKey">
<elementSpec ident="Transcription">
<valList>
<valItem corresp="dipl" ident="dipl" />
</valList>
</elementSpec>
</schemaSpec>
</encodingDesc>
<revisionDesc>
<change n="1.0" when="2026">First release of the corpus, including this document.</change>
</revisionDesc>
</teiHeader>
<text />
</TEI>
Full example
<?xml version='1.0' encoding='utf-8'?>
<?xml-model href="./corpus.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader style="Prose" type="DocumentHeader">
<fileDesc xml:id="document1">
<titleStmt>
<title>Demo Document</title>
<author>
<persName>
<forename>John</forename>
<surname>Doe</surname>
</persName>
</author>
<editor>
<persName>
<forename>Jane</forename>
<surname>Doe</surname>
</persName>
</editor>
<respStmt>
<resp>Metadata</resp>
<persName>
<forename>Someone</forename>
<surname>Else</surname>
</persName>
<orgName type="Department">Department of History</orgName>
<orgName type="Institution">University</orgName>
</respStmt>
</titleStmt>
<extent type="Tokens">1234</extent>
<publicationStmt>
<publisher>ABC Druck</publisher>
<pubPlace>Berlin</pubPlace>
<idno></idno>
<date when="1674">1674</date>
<biblScope>pp.1-80</biblScope>
</publicationStmt>
<seriesStmt>
<title>Zeitschrift für Pflanzen</title>
<editor>Königliche Akademie der Wissenschaften. Historische Komission, München</editor>
<biblScope unit="vol">2</biblScope>
</seriesStmt>
<sourceDesc n="1">
<msDesc>
<msIdentifier>
<msName>Base manuscript for the transcription (A). Continuation (1434-1441) and some
Additions come from ms. a: Nürnberg, Stadtbibliothek, Cod. Amb. 237.4°</msName>
<altIdentifier>
<repository>Nürnberg. Staatsarchiv</repository>
<collection>Rep. 52a (Reichsstadt Nürnberg)</collection>
<idno>Hs. Nr. 14</idno>
</altIdentifier>
</msIdentifier>
<history>
<origin>
<objectType>Chronicle of the history of the city of Nuremberg (Franconia) from 1126 to
1434, with an extension until 1441. It provides detailed information about imperial
history and city history, particularly from around 1420 onwards. The work underwent
multiple revisions and was used by later Nuremberg chroniclers.</objectType>
<origDate notAfter-custom="1441" notBefore-custom="1400" precision="medium">The text
was certainly written around 1434 with extension until 1441</origDate>
<origPlace>Nuremberg</origPlace>
<title>Chronik aus Kaiser Sigmund's Zeit</title>
<locus />
</origin>
</history>
</msDesc>
<recordHist>
<source facs="urn:nbn:de:bvb:12-bsb10798054-4">
<ref target="https://www.digitale-sammlungen.de/en/view/bsb10798054">
Bayerische Staatsbibliothek digital
</ref>
</source>
</recordHist>
</sourceDesc>
</fileDesc>
<profileDesc>
<langUsage>
<language ident="de" style="Language">Early New High German</language>
<language ident="de" style="LanguageArea">Southern dialects</language>
<language ident="de" style="LanguageType">Bavarian</language>
</langUsage>
</profileDesc>
<encodingDesc>
<schemaSpec ident="AnnotationKey">
<elementSpec ident="Transcription">
<valList>
<valItem corresp="clean" ident="clean"/>
<valItem corresp="dipl" ident="dipl"/>
<valItem corresp="norm" ident="norm"/>
</valList>
</elementSpec>
<elementSpec ident="Lexical">
<valList>
<valItem corresp="lemma" ident="lemma"/>
<valItem corresp="pos" ident="pos"/>
</valList>
</elementSpec>
<elementSpec ident="Graphical">
<valList>
<valItem corresp="lb" ident="lb"/>
<valItem corresp="head" ident="head"/>
</valList>
</elementSpec>
<elementSpec ident="Syntactic">
<valList>
<valItem corresp="attr_gen" ident="attr_gen"/>
<valItem corresp="morph_ellipsis" ident="morph_ellipsis"/>
<valItem corresp="gram" ident="gram"/>
</valList>
</elementSpec>
</schemaSpec>
</encodingDesc>
<revisionDesc>
<change n="4.0" type="QualityCheck" when="2014-04-01" who="LAUDATIO">Documents added,
consistency check and unifying list of annotation keys.
</change>
<change n="4.1" type="Extension" when="2014-10-27" who="LAUDATIO">Annotation keys were added.</change>
<change n="5.0" type="CorpusExtension" when="2026" who="LAUDATIO">
Additional texts were added to the corpus.
</change>
</revisionDesc>
</teiHeader>
<text/>
</TEI>