<tagUsage>

<tagUsage> beschreibt den Gebrauch eines speziellen Elements in einem Text. 2.3.4 The Tagging Declaration
Modulheader — 2 The TEI Header
Attribute
gi (element name) die Bezeichnung (generischer Bezeichner) des durch das Tag gekennzeichneten Elements.
Zustand Obligatorisch
Datentyp

<rng:ref name="data.name"/>
data.name
Werte the name of an element within the namespace indicated by the parent namespace element
occursgibt an, wie oft das Element im Text vorkommt
Zustand Empfohlen
Datentyp

<rng:ref name="data.count"/>
data.count
Werte an integer number greater than zero
withId (with unique identifier) gibt an, wie oft dieses Element mit einem bestimmten Wert für das globale Attribut xml:id im Text vorkommt.
Zustand Empfohlen
Datentyp

<rng:ref name="data.count"/>
data.count
Werte an integer number greater than zero
renderbeschreibt den Bezeichner für ein rendition -Element, das festlegt, wie dieses Element wiedergegeben werden soll.
Zustand Optional
Datentyp

<rng:ref name="data.pointer"/>
data.pointer
Werte an identifier specified as the value of the xml:id attribute on some rendition element in the current document.
Verwendet von
Kann enthalten
Deklaration

<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
}
Beispiel
<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>