<teiCorpus>

<teiCorpus> contiene la totalidad de un corpus TEI codificado, comprendiendo un único encabezado y uno o más elementos TEI, cada uno de los cuales tiene a su vez un único encabezado y un texto. 4 Default Text Structure 15.1 Varieties of Composite Text
Módulocore — 3 Elements Available in All TEI Documents
Atributos
versionLa versión del esquema TEI
Estado Opcional
Tipo de datos
xsd:decimal
Valores A number identifying the version of the TEI guidelines
Used byteiCorpus
May contain
core: teiCorpus
header: teiHeader
textstructure: TEI
Declaración
element teiCorpus
{
   att.global.attributes,
   attribute version { xsd:decimal }?,
   ( teiHeader, ( TEI | teiCorpus )+ )
}
Ejemplo
<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>
Nota
Must contain one TEI header for the corpus, and a series of <TEI> elements, one for each text.
This element is mandatory when applicable.