<teiHeader>

<teiHeader> (en-tête TEI) fournit des informations descriptives et déclaratives qui constituent une page de titre électronique au début de tout texte conforme à la TEI. [2.1.1 The TEI Header and Its Components 15.1 Varieties of Composite Text]
Module header — The TEI Header
Attributs
Contenu dans
core: teiCorpus
textstructure: TEI
Peut contenir
Note

Un des seuls éléments obligatoires dans tout document TEI.

Exemple
<teiHeader>
 <fileDesc>
  <titleStmt>
   <title>La Parisienne</title>
   <author>Henry BECQUE</author>
  </titleStmt>
  <publicationStmt>
   <distributor>ATILF (Analyse et Traitement Informatique de la Langue Française)</distributor>
   <idno type="FRANTEXT">L434</idno>
   <address>
    <addrLine>44, avenue de la Libération</addrLine>
    <addrLine>BP 30687</addrLine>
    <addrLine>54063 Nancy Cedex</addrLine>
    <addrLine>FRANCE</addrLine>
   </address>
   <availability status="free">
    <p>Dans un cadre de recherche ou d'enseignement</p>
   </availability>
  </publicationStmt>
  <sourceDesc>
   <biblStruct>
    <monogr>
     <imprint>
      <publisher>Paris : Fasquelle, 1922.</publisher>
     </imprint>
    </monogr>
   </biblStruct>
  </sourceDesc>
 </fileDesc>
 <profileDesc>
  <creation>
   <date>1885</date>
  </creation>
 </profileDesc>
</teiHeader>
Modèle de contenu
<content>
 <sequence>
  <elementRef key="fileDesc"/>
  <classRef key="model.teiHeaderPart"
   minOccurs="0maxOccurs="unbounded"/>

  <elementRef key="revisionDesc"
   minOccurs="0"/>

 </sequence>
</content>
Schéma Declaration
<rng:element name="teiHeader">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:group>
  <rng:ref name="fileDesc"/>
  <rng:zeroOrMore>
   <rng:ref name="model.teiHeaderPart"/>
  </rng:zeroOrMore>
  <rng:optional>
   <rng:ref name="revisionDesc"/>
  </rng:optional>
 </rng:group>
</rng:element>
element teiHeader
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   ( fileDesc, model.teiHeaderPart*, revisionDesc? )
}