<tagUsage>

<tagUsage> fornisce informazioni circa l'uso di uno specifico elemento all'interno di un testo. 2.3.4 The Tagging Declaration
Moduloheader — 2 The TEI Header
Attributi
gi (nome di elemento) il nome (identificatore generico) dell'elemento indicato dal marcatore.
Stato Richiesto
Tipo di dati

<rng:ref name="data.name"/>
data.name
Valori the name of an element within the namespace indicated by the parent namespace element
occursspecifica il numero di occorrenze dell'elemento nel testo.
Stato Consigliato
Tipo di dati

<rng:ref name="data.count"/>
data.count
Valori an integer number greater than zero
withId (con identificatore unico) specifica il numero di occorrenze dell'elemento nel testo e che reca un valore distinto dall'attributo globale xml:id.
Stato Consigliato
Tipo di dati

<rng:ref name="data.count"/>
data.count
Valori an integer number greater than zero
renderindica l'identificatore di un elemento rendition che definisce in che modo è stato reso l'elemento
Stato Opzionale
Tipo di dati

<rng:ref name="data.pointer"/>
data.pointer
Valori an identifier specified as the value of the xml:id attribute on some rendition element in the current document.
Usato da
Può contenere
Dichiarazione

<rng:element name="tagUsage">
<rng:ref name="att.global.attributes"/>
<rng:attribute name="gi">
 <rng:ref name="data.name"/>
</rng:attribute>
<rng:optional>
 <rng:attribute name="occurs">
  <rng:ref name="data.count"/>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="withId">
  <rng:ref name="data.count"/>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="render">
  <rng:ref name="data.pointer"/>
 </rng:attribute>
</rng:optional>
<rng:ref name="macro.limitedContent"/>
</rng:element>
element tagUsage
{
   att.global.attributes,
   attribute gi { data.name },
   attribute occurs { data.count }?,
   attribute withId { data.count }?,
   attribute render { data.pointer }?,
   macro.limitedContent
}
Esempio
<tagsDecl>
 <rendition xml:id="it">Render using a slant or italic variant
   on the current font</rendition>
<!-- ... -->
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage
    gi="hi"
    occurs="28"
    withId="2"
    render="#it">
Used to mark English words italicised in the copy text.</tagUsage>
  <tagUsage gi="foreignrender="#it">Used to mark non-English
     words in the copy text.</tagUsage>
<!-- ... -->
 </namespace>
</tagsDecl>