Global division of the XML/TEI file

From XML
Revision as of 11:50, 26 April 2017 by PBO (Talk | contribs)

Jump to: navigation, search

An XML/TEI file consists of several mandatory and, if so desired, optional sections, that are each encoded within their own XML elements:

  1. The TEI Header, which contains the metadata about the text in a <teiHeader> element (mandatory).
  2. If relevant, a facsimile section for identifying the digital image files of the source in a <facsimile> element (optional).
  3. The actual transcription of the text in a <text> element (mandatory). This element will also include annotation.

This is how the elements are coded in the XML file:

<teiHeader>
 <!--...-->
</teiHeader>
<facsimile>
 <!--...-->
</facsimile>
<text>
 <body>
  <!--...-->
 </body>
</text>


See also