Beispiel: <tagsDecl> (tagging declaration)

These search results reproduce every example of the use of <tagsDecl> in the Guidelines, including all localised and translated versions. In some cases, the examples have been drawn from discussion of other elements in the Guidelines and illustrating the use of <tagsDecl> is not the main focus of the passage in question. In other cases, examples may be direct translations of each other, and hence identical from the perspective of their encoding.

2 The TEI Header


2.3.4.1 Rendition

<styleDefDecl scheme="css"
 schemeVersion="2.1"/>

<!-- ... -->
<tagsDecl>
 <rendition xml:id="center">text-align: center;</rendition>
 <rendition xml:id="small">font-size: small;</rendition>
 <rendition xml:id="large">font-size: large;</rendition>
 <rendition xml:id="x-large">font-size: x-large;</rendition>
 <rendition xml:id="xx-large">font-size: xx-large</rendition>
 <rendition xml:id="expanded">letter-spacing: +3pt;</rendition>
 <rendition xml:id="x-space">line-height: 150%;</rendition>
 <rendition xml:id="xx-space">line-height: 200%;</rendition>
 <rendition xml:id="red">color: red;</rendition>
</tagsDecl>
⚓︎

<tagsDecl> (en)

<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>
Alle anzeigen ⚓︎

<tagUsage> (en)

<tagsDecl partial="true">
 <rendition xml:id="itscheme="css"
  selector="foreign, hi">
font-style: italic; </rendition>
<!-- ... -->
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage gi="hioccurs="28withId="2"> Used to mark English words italicized in the copy text.</tagUsage>
  <tagUsage gi="foreign">Used to mark non-English words in the copy text.</tagUsage>
<!-- ... -->
 </namespace>
</tagsDecl>
Alle anzeigen ⚓︎

<tagUsage> (fr)

<tagsDecl>
 <rendition xml:id="fr_it">A noter l'emploi d'une variante penchée ou italique dans la fonte
   actuelle.</rendition>
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage gi="abbr"> Les abréviations étant très courantes et de type
  <term>brevigraph</term> (voir le manuel TEI), l'attribut "type" a cette valeur par
     défaut. Dans les autres cas, ("Sénécial" abrégé par "Sénat") , l'attribut "type " a
     explicitement la valeur "contraction" et l'attribut "expan" contient la forme
     développée.</tagUsage>
  <tagUsage gi="lb">Chaque ligne est numérotée depuis le début du corps de la lettre (sauf
     le titre).</tagUsage>
  <tagUsage gi="lb">Chaque page est numérotée sous la forme d'un numéro de folio suivi de
     "recto" ou "verso". Dans certains cas, le foliotage réel n'est pas celui qui est
     indiqué sur le registre. Dans ce cas, les deux numérotations sont gardées.</tagUsage>
  <tagUsage gi="unclear">Mots difficiles à lire</tagUsage>
  <tagUsage gi="opener">Phrase(s) d'introduction de la lettre.</tagUsage>
  <tagUsage gi="signed">Signature du copiste.</tagUsage>
 </namespace>
</tagsDecl>
bibliographie Alle anzeigen ⚓︎

<rendition> (en)

<tagsDecl>
 <rendition xml:id="r-centerscheme="css">text-align: center;</rendition>
 <rendition xml:id="r-smallscheme="css">font-size: small;</rendition>
 <rendition xml:id="r-largescheme="css">font-size: large;</rendition>
 <rendition xml:id="initcaps"
  scope="first-letterscheme="css">
font-size: xx-large</rendition>
</tagsDecl>
Alle anzeigen ⚓︎

<styleDefDecl> (en)

<styleDefDecl scheme="css"
 schemeVersion="2.1"/>

<!-- ... -->
<tagsDecl>
 <rendition xml:id="boldface">font-weight: bold;</rendition>
 <rendition xml:id="italicstyle">font-style: italic;</rendition>
</tagsDecl>
Alle anzeigen ⚓︎

1 The TEI Infrastructure


1.3.1.1.3 Rendition Indicators

<tagsDecl>
<!-- define italic style using CSS, selecting it as default for emph and hi elements -->
 <rendition xml:id="ITscheme="css"
  selector="emph, hi">
font-style: italic;</rendition>
<!-- define a serif font family, selecting it as default for the text element -->
 <rendition xml:id="FontRomanscheme="css"
  selector="text">
font-family: serif;</rendition>
</tagsDecl>
<!-- ... -->
<text>
 <body>
  <div>
   <p rendition="#IT">
<!-- this paragraph uses the seriffed font, but is in italic-->
   </p>
   <p>
<!-- this paragraph uses the seriffed font, but is not in italic -->
   </p>
  </div>
 </body>
</text>
⚓︎

att.datcat (en)

<tagsDecl partial="true">
<!-- ... -->
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage gi="pos"
   targetDatcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3">
Contains the part of speech.</tagUsage>
  <tagUsage gi="case"
   targetDatcat="http://hdl.handle.net/11459/CCR_C-1840_9f4e319c-f233-6c90-9117-7270e215f039">
Contains information about the grammatical case that the described form is inflected for.</tagUsage>
<!-- ... -->
 </namespace>
</tagsDecl>
⚓︎

3 Elements Available in All TEI Documents


3.3.3 Quotation

<said>Who-e debel
you?</said> — he at last said —
<said>you no speak-e,
damme, I kill-e.</said> And so saying,
the lighted tomahawk began flourishing
about me in the dark.

<!-- in the header: -->
<tagsDecl partial="true">
 <rendition scheme="cssselector="said"
  scope="before">
content:"‘";</rendition>
 <rendition scheme="cssselector="said"
  scope="after">
content:"’";</rendition>
</tagsDecl>
bibliographie ⚓︎