<teiCorpus>

<teiCorpus> contient la totalité d'un corpus encodé selon la TEI, comprenant un seul en-tête de corpus et un ou plusieurs éléments TEI dont chacun contient un seul en-tête textuel et un texte 4 Default Text Structure 15.1 Varieties of Composite Text
Modulecore — 3 Elements Available in All TEI Documents
Attributs
versionla version du modèle TEI
Statut Optionel
Type de données
xsd:decimal
Valeurs A number identifying the version of the TEI guidelines
Utilisé parteiCorpus
Peut contenir
core: teiCorpus
header: teiHeader
textstructure: TEI
Declaration
element teiCorpus
{
   att.global.attributes,
   attribute version { xsd:decimal }?,
   ( teiHeader, ( TEI | teiCorpus )+ )
}
Exemple
<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>
Note
Must contain one TEI header for the corpus, and a series of <TEI> elements, one for each text.
This element is mandatory when applicable.