<hyphenation>

<hyphenation> (hyphenation) fasst zusammen, wie die Silbentrennung des Quelltextes in der kodierten Fassung behandelt wurde. [2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements]
Modul header — The TEI Header
Attribute
eol⚓︎ (end-of-line) gibt an, ob die Silbentrennung am Zeilenende im Text beibehalten wurde.
Zustand Optional
Datentyp teidata.enumerated
Gültige Werte:
all
all end-of-line hyphenation has been retained, even though the lineation of the original may not have been.
some
end-of-line hyphenation has been retained in some cases. [Vorgabe]
hard
all soft end-of-line hyphenation has been removed: any remaining end-of-line hyphenation should be retained.
none
all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line.
Mitglied des
Enthalten in
Kann enthalten
core: p
linking: ab
Beispiel
<hyphenation eol="some">
 <p>End-of-line hyphenation silently removed where appropriate</p>
</hyphenation>
Content model
<content>
 <classRef key="model.pLikeminOccurs="1"
  maxOccurs="unbounded"/>

</content>
Schema Deklaration
<rng:element name="hyphenation">
 <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:ref name="att.declarable.attributes"/>
 <rng:optional>
  <rng:attribute name="eol"
   a:defaultValue="some">

   <rng:choice>
    <rng:value>all</rng:value>
    <rng:value>some</rng:value>
    <rng:value>hard</rng:value>
    <rng:value>none</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:ref name="model.pLike"/>
 </rng:oneOrMore>
</rng:element>
element hyphenation
{
   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,
   att.declarable.attributes,
   attribute eol { "all" | "some" | "hard" | "none" }?,
   model.pLike+
}