<tagsDecl>

<tagsDecl> (Beschreibung des Tag-Gebrauchs) liefert detaillierte Angaben zum Gebrauch von Tags, die in einem Dokument verwendet werden. [2.3.4 The Tagging Declaration 2.3 The Encoding Description]
Modul header — The TEI Header
Attribute
partial⚓︎ indicates whether the element types listed exhaustively include all those found within text, or represent only a subset.
Zustand Empfohlen
Datentyp teidata.truthValue
Mitglied des
Enthalten in
header: encodingDesc
Kann enthalten
Beispiel
<tagsDecl partial="true">
 <rendition xml:id="rend-itscheme="css"
  selector="emph, hi, name, title">
font-style: italic;</rendition>
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage gi="hioccurs="467"/>
  <tagUsage gi="titleoccurs="45"/>
 </namespace>
 <namespace name="http://docbook.org/ns/docbook">
  <tagUsage gi="paraoccurs="10"/>
 </namespace>
</tagsDecl>

If the partial attribute were not specified here, the implication would be that the document in question contains only hi, title, and <para> elements.

Content model
<content>
 <sequence>
  <elementRef key="renditionminOccurs="0"
   maxOccurs="unbounded"/>

  <elementRef key="namespaceminOccurs="0"
   maxOccurs="unbounded"/>

 </sequence>
</content>
Schema Deklaration
<rng:element name="tagsDecl">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:optional>
  <rng:attribute name="partial">
   <rng:ref name="teidata.truthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="rendition"/>
  </rng:zeroOrMore>
  <rng:zeroOrMore>
   <rng:ref name="namespace"/>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element tagsDecl
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   attribute partial { teidata.truthValue }?,
   ( rendition*, namespace* )
}