<fileDesc>

<fileDesc> (description bibliographique du fichier) contient une description bibliographique complète du fichier électronique. [2.2 The File Description 2.1.1 The TEI Header and Its Components]
Module header — The TEI Header
Attributs
Contenu dans
Peut contenir
Note

Cet élément est la source d'information principale pour créer une notice de catalogage ou une référence bibliographique destinée à un fichier électronique. Il fournit le titre et les mentions de responsabilité, ainsi que des informations sur la publication ou la distribution du fichier, sur la collection à laquelle il appartient le cas échéant, ainsi que des notes détaillées sur des informations qui n'apparaissent pas ailleurs dans l'en-tête. Il contient également une description bibliographique complète de la ou des sources du texte produit.

<a href="https://translate.tei-c.org/translate.html?edit=fileDesc.xml"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" aria-label="Translation out of date." viewBox="0 0 16 16" style="position:absolute; top:2px; right:2px; color:red"><title>Translation out of date.</title> <path d="M6.146 7.146a.5.5 0 0 1 .708 0L8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 0 1 0-.708z"></path> <path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"></path></svg></a>
Exemple
<teiHeader>
 <fileDesc>
  <titleStmt>
   <title>Le document TEI minimal</title>
  </titleStmt>
  <publicationStmt>
   <p>Distribué comme partie de TEI P5</p>
  </publicationStmt>
  <sourceDesc>
   <p>Aucune source : ce document est né numérique</p>
  </sourceDesc>
 </fileDesc>
</teiHeader>
Modèle de contenu
<content>
 <sequence>
  <sequence>
   <elementRef key="titleStmt"/>
   <elementRef key="editionStmt"
    minOccurs="0"/>

   <elementRef key="extentminOccurs="0"/>
   <elementRef key="publicationStmt"/>
   <elementRef key="seriesStmt"
    minOccurs="0maxOccurs="unbounded"/>

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

  </sequence>
  <elementRef key="sourceDesc"
   minOccurs="1maxOccurs="unbounded"/>

 </sequence>
</content>
Schéma Declaration
<rng:element name="fileDesc">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:group>
  <rng:group>
   <rng:ref name="titleStmt"/>
   <rng:optional>
    <rng:ref name="editionStmt"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="extent"/>
   </rng:optional>
   <rng:ref name="publicationStmt"/>
   <rng:zeroOrMore>
    <rng:ref name="seriesStmt"/>
   </rng:zeroOrMore>
   <rng:optional>
    <rng:ref name="notesStmt"/>
   </rng:optional>
  </rng:group>
  <rng:oneOrMore>
   <rng:ref name="sourceDesc"/>
  </rng:oneOrMore>
 </rng:group>
</rng:element>
element fileDesc
{
   att.global.attributes,
   att.global.analytic.attributes,
   att.global.change.attributes,
   att.global.facs.attributes,
   att.global.linking.attributes,
   att.global.rendition.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   (
      (
         titleStmt,
         editionStmt?,
         extent?,
         publicationStmt,
         seriesStmt*,
         notesStmt?
      ),
      sourceDesc+
   )
}