<correction>

<correction> (Korrekturverfahren) gibt an, wie und unter welchen Bedingungen Korrekturen an dem Text vorgenommen wurden. [2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements]
Modul header — The TEI Header
Attribute
status⚓︎ gibt Auskunft über das Ausmaß von Korrekturen, die an dem Text vorgenommen wurden.
Zustand Optional
Datentyp teidata.enumerated
Gültige Werte:
high
the text has been thoroughly checked and proofread.
medium
the text has been checked at least once.
low
the text has not been checked.
unknown
the correction status of the text is unknown.
method⚓︎ Bezeichnet die Methode, die angewandt wurde um Korrekturen im Text zu kennzeichnen.
Zustand Optional
Datentyp teidata.enumerated
Gültige Werte:
silent
corrections have been made silently [Vorgabe]
markup
corrections have been represented using markup
Mitglied des
Enthalten in
Kann enthalten
core: p
linking: ab
Anmerkung

May be used to note the results of proof reading the text against its original, indicating (for example) whether discrepancies have been silently rectified, or recorded using the editorial tags described in section 3.5 Simple Editorial Changes.

Beispiel
<correction>
 <p>Errors in transcription controlled by using the WordPerfect spelling checker, with a user
   defined dictionary of 500 extra words taken from Chambers Twentieth Century
   Dictionary.</p>
</correction>
Content model
<content>
 <classRef key="model.pLikeminOccurs="1"
  maxOccurs="unbounded"/>

</content>
Schema Deklaration
<rng:element name="correction">
 <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="status">
   <rng:choice>
    <rng:value>high</rng:value>
    <rng:value>medium</rng:value>
    <rng:value>low</rng:value>
    <rng:value>unknown</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="method"
   a:defaultValue="silent">

   <rng:choice>
    <rng:value>silent</rng:value>
    <rng:value>markup</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:ref name="model.pLike"/>
 </rng:oneOrMore>
</rng:element>
element correction
{
   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 status { "high" | "medium" | "low" | "unknown" }?,
   attribute method { "silent" | "markup" }?,
   model.pLike+
}