<correction>

<correction> (correction principles) テキスト中に施された修正の状況や方法を示す。 [2.3.3 The Editorial Practices Declaration 15.3.2 Declarable Elements]
モジュール header — The TEI Header
属性
status⚓︎ 当該テキストに施された修正の実行状況を示す。
状態 任意
データ型 teidata.enumerated
正当な値:
high
当該テキストは、十分に検査・校正されている。
medium
当該テキストは、少なくとも一度は検査されている。
low
当該テキストは、検査されていない。
unknown
当該テキストに施された修正の精度は、不明である。
method⚓︎ 当該テキストに施された修正の方法を示す。
状態 任意
データ型 teidata.enumerated
正当な値:
silent
修正の跡は残されていない。 [初期値]
markup
修正箇所は、タグで示されている。
クラブのメンバー
上位
下位
core: p
linking: ab
解説

元資料を元に行われた校正結果を示すために使われるかもしれない。例え ば、相違点は密かに修正されているのか、または3.5 Simple Editorial Changes にある編集用のタグを使用して記録されているのか、など。

<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>
宣言
<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+
}