<fileDesc>

<fileDesc> (file description) 電子ファイルに関する完全な書誌情報を示す。 [2.2 The File Description 2.1.1 The TEI Header and Its Components]
モジュール header — The TEI Header
属性
上位
下位
解説

電子ファイルの書誌項目または書誌引用を示す中心となるもの。 タイトル、当該ファイルの出版や頒布に関連する責任表示、他には記述さ れいない書誌情報に関する詳細な事項を含む。また、当該電子ファイルの 元になった、元資料に関する完全な書誌情報も示す。

<fileDesc>
 <titleStmt>
  <title>The shortest possible TEI document</title>
 </titleStmt>
 <publicationStmt>
  <p>Distributed as part of TEI P5</p>
 </publicationStmt>
 <sourceDesc>
  <p>No print source exists: this is an original digital text</p>
 </sourceDesc>
</fileDesc>
Content model
<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>
宣言
<rng:element name="fileDesc">
 <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: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.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,
   (
      (
         titleStmt,
         editionStmt?,
         extent?,
         publicationStmt,
         seriesStmt*,
         notesStmt?
      ),
      sourceDesc+
   )
}