<teiCorpus>

<teiCorpus> contiene un intero corpus codificato TEI, comprende un intestazione del corpus e uno o più elementi TEI, ciascuno contenente un un singolo testo e la relatica intestazione. 4 Default Text Structure 15.1 Varieties of Composite Text
Modulocore — 3 Elements Available in All TEI Documents
Attributi
versionLa versione dello schema TEI
Stato Opzionale
Tipo di dati

<rng:data type="decimal"/>
xsd:decimal
Valori A number identifying the version of the TEI guidelines
Usato da
Può contenere
core: teiCorpus
header: teiHeader
textstructure: TEI
Dichiarazione

<rng:element name="teiCorpus">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="versiona:defaultValue="5.0">
  <rng:data type="decimal"/>
 </rng:attribute>
</rng:optional>
<rng:group>
 <rng:ref name="teiHeader"/>
 <rng:oneOrMore>
  <rng:choice>
   <rng:ref name="TEI"/>
   <rng:ref name="teiCorpus"/>
  </rng:choice>
 </rng:oneOrMore>
</rng:group>
</rng:element>
element teiCorpus
{
   att.global.attributes,
   attribute version { xsd:decimal }?,
   ( teiHeader, ( TEI | teiCorpus )+ )
}
Esempio
<teiCorpus>
 <teiHeader>
<!-- header for corpus -->
 </teiHeader>
 <TEI>
  <teiHeader>
<!-- header for first text -->
  </teiHeader>
  <text>
<!-- content of first text -->
  </text>
 </TEI>
 <TEI>
  <teiHeader>
<!-- header for second text -->
  </teiHeader>
  <text>
<!-- content of second text -->
  </text>
 </TEI>
<!-- more TEI elements here -->
</teiCorpus>