<textClass>

<textClass> (文件分類) 匯集以標準分類架構、索引典等來描述文件性質或主題的資訊。 2.4.3 The Text Classification
組件 header — 2 The TEI Header
除全域屬性以外 att.declarable (@default)
屬於
可包含
宣告

<rng:element name="textClass">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.declarable.attributes"/>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="classCode"/>
   <rng:ref name="catRef"/>
   <rng:ref name="keywords"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element textClass
{
   att.global.attributes,
   att.declarable.attributes,
   ( classCode | catRef | keywords )*
}
例子
<taxonomy>
 <category xml:id="zh-tw_chineseliterature">
  <catDesc>中國文學</catDesc>
 </category>
<!-- 其他文類 -->
</taxonomy>
<!-- ... -->
<textClass>
 <catRef target="#zh-tw_chineseliterature"/>
 <classCode scheme="http://www.ncl.edu.tw/">820</classCode>
 <keywords scheme="http://authorities.loc.gov">
  <list>
   <item>傷痕文學</item>
   <item>語文類</item>
  </list>
 </keywords>
</textClass>