<tagUsage>

<tagUsage> proporciona información sobre el uso de un elemento específico al interno del texto. 2.3.4 The Tagging Declaration
Móduloheader — 2 The TEI Header
Atributos
gi (element name) el nombre (identificador genérico) de un elemento indicado mediante una etiqueta.
Estado Necesario
Tipo de datos
data.name
Valores the name of an element within the namespace indicated by the parent <namespace> element
occursespecifica el número de veces que un elemento determinado aparece en el texto.
Estado Recomendado
Tipo de datos
data.count
Valores an integer number greater than zero
withId (with unique identifier) indica el número de veces que este elemento aparece en el texto con un valor distintivo apara el atributo global xml:id.
Estado Recomendado
Tipo de datos
data.count
Valores an integer number greater than zero
renderespecifica el identificador de un elemento <rendition> que define cómo este elemento ha de ser interpretado.
Estado Opcional
Tipo de datos
data.pointer
Valores an identifier specified as the value of the xml:id attribute on some <rendition> element in the current document.
Used bynamespace
May contain
Declaración
element tagUsage
{
   att.global.attributes,
   attribute gi { data.name },
   attribute occurs { data.count }?,
   attribute withId { data.count }?,
   attribute render { data.pointer }?,
   macro.limitedContent
}
Ejemplo
<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>