<text>

<text> (文本) 包含ㄧ份任何種類的文本,無論是單一或是複合文件,像是詩詞或戲劇、散文集、小說、字典、或是文集。 4 Default Text Structure 15.1 Varieties of Composite Text
組件textstructure — 4 Default Text Structure
屬性 att.declaring (@decls) att.typed (@type, @subtype)
屬於TEI group
可包含
宣告
element text
{
   att.global.attributes,
   att.declaring.attributes,
   att.typed.attributes,
   (
      model.global*,
      ( front, model.global* )?,
      ( body | group ),
      model.global*,
      ( back, model.global* )?
   )
}
例子
<text>
 <front>
  <docTitle>
   <titlePart>Autumn Haze</titlePart>
  </docTitle>
 </front>
 <body>
  <l>Is it a dragonfly or a maple leaf</l>
  <l>That settles softly down upon the water?</l>
 </body>
</text>
例子

The body of a text may be replaced by a group of nested texts, as in the following schematic:

<text>
 <front/>
 <group>
  <text>
   <front/>
   <body/>
   <back/>
  </text>
  <text/>
 </group>
</text>
This element should not be used to represent a text which is inserted at an arbitrary point within the structure of another, for example as in an embedded or quoted narrative; the <floatingText> is provided for this purpose.