<textClass>

<textClass> (classification du texte) regroupe des informations décrivant la nature ou le sujet d’un texte selon des termes issus d’un système de classification standardisé, d’un thésaurus, etc. 2.4.3 The Text Classification
Module header — 2 The TEI Header
En complément des attributs globaux att.declarable (@default)
Utilisé par
Peut contenir
Declaration

<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 )*
}
Exemple
<taxonomy>
 <category xml:id="acprose">
  <catDesc>Academic prose</catDesc>
 </category>
<!-- other categories here -->
</taxonomy>
<!-- ... -->
<textClass>
 <catRef target="#acprose"/>
 <classCode scheme="http://www.udcc.org">001.9</classCode>
 <keywords scheme="http://authorities.loc.gov">
  <list>
   <item>End of the world</item>
   <item>History - philosophy</item>
  </list>
 </keywords>
</textClass>