<correction>

<correction> (更正原則) 說明文本中的更正是在什麼情況下、如何產生的。 [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
corrections have been represented using markup
俱乐部会员
可包含在於
可包含
core: p
linking: ab

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.

例子
<correction>
 <p>抄寫錯誤由WordPerfect拼寫檢查系統控制,該系統使用Chambers Twentieth Century Dictionary裡內含之使用者自訂的500個詞條。</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+
}