<catRef>

<catRef> (riferimento alla categoria) specifica una o più categorie definite all'interno di una tassonomia o tipologia di testo 2.4.3 The Text Classification
Modulo header — 2 The TEI Header
Oltre agli attributi globali
target identifica le categorie interessate
Stato Richiesto
Tipo di dati 1–∞ occorrenze di 

<rng:ref name="data.pointer"/>
data.pointer
separato da spazio bianco
Valori A series of one or more space-separated pointers (URIs) to category elements, typically located within a taxonomy element inside a TEI header.
scheme identifica lo schema di classificazione all'interno del quale sono definite le categorie interessate.
Stato Opzionale
Tipo di dati

<rng:ref name="data.pointer"/>
data.pointer
Valori May supply the identifier of the associated taxonomy element.
Usato da
Può contenere Elemento vuoto
Dichiarazione

<rng:element name="catRef">
 <rng:ref name="att.global.attributes"/>
 <rng:attribute name="target">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="data.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="scheme">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:empty/>
</rng:element>
element catRef
{
   att.global.attributes,
   attribute target { list { data.pointer+ } },
   attribute scheme { data.pointer }?,
   empty
}
Esempio
<catRef target="#news #prov #sales2"/>
<!-- elsewhere -->
<taxonomy>
 <category xml:id="news">
  <catDesc>Newspapers</catDesc>
 </category>
 <category xml:id="prov">
  <catDesc>Provincial</catDesc>
 </category>
 <category xml:id="sales2">
  <catDesc>Low to average annual sales</catDesc>
 </category>
</taxonomy>