<correction>

<correction> (principi di correzione) dichiara quante correzioni sono state apportate al testo e in quali circostanze. [2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements]
Modulo header — The TEI Header
Attributi
status⚓︎ indica il gradi di corrzione apportata al testo.
Stato Opzionale
Tipo di dati teidata.enumerated
I valori legali sono:
high
il testo è stato controllato accuratamente
medium
il testo è stato controllato almeno una volta.
low
il testo non è stato controllato.
unknown
lo stadio di correzione non è noto.
method⚓︎ indica il metodo adottato per indicare le correzioni all'interno di un testo.
Stato Opzionale
Tipo di dati teidata.enumerated
I valori legali sono:
silent
le correzioni sono state apportate silenziosamente [Valore di default]
markup
sono state rappresentate delle correzioni tramite annotazione
Membro del
Contenuto in
Può contenere
core: p
linking: ab
Nota

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.

Esempio
<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>
Dichiarazione
<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+
}