<textClass>

<textClass> (文件分類) 匯集以標準分類架構、索引典等來描述文件性質或主題的資訊。 [2.4.3 The Text Classification]
組件 header — The TEI Header
屬性
俱乐部会员
可包含在於
header: profileDesc
可包含
例子
<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>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="classCode"/>
  <elementRef key="catRef"/>
  <elementRef key="keywords"/>
 </alternate>
</content>
宣告
<rng:element name="textClass">
 <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: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.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,
   att.declarable.attributes,
   ( classCode | catRef | keywords )*
}