<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
수정사항이 마크업을 사용해 표사되었다.
클럽 회원
에 의해 포함된
포함할 수 있다
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>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+
}