<revisionDesc>

<revisionDesc> (수정 기술) 하나의 파일에 대한 수정 이력을 요약한다. [2.6 The Revision Description 2.1.1 The TEI Header and Its Components]
모듈 header — The TEI Header
속성
에 의해 포함된
header: teiHeader
linking: annotation
포함할 수 있다
core: list
주석

If present on this element, the status attribute should indicate the current status of the document. The same attribute may appear on any change to record the status at the time of that change. Conventionally change elements should be given in reverse date order, with the most recent change at the start of the list.

<revisionDesc status="embargoed">
 <change when="1991-11-11who="#LB"> deleted chapter 10 </change>
</revisionDesc>
Content model
<content>
 <alternate>
  <elementRef key="listminOccurs="1"
   maxOccurs="unbounded"/>

  <elementRef key="listChange"
   minOccurs="1maxOccurs="unbounded"/>

  <elementRef key="changeminOccurs="1"
   maxOccurs="unbounded"/>

 </alternate>
</content>
선언
<rng:element name="revisionDesc">
 <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.docStatus.attributes"/>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="list"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:ref name="listChange"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:ref name="change"/>
  </rng:oneOrMore>
 </rng:choice>
</rng:element>
element revisionDesc
{
   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.docStatus.attributes,
   ( list+ | listChange+ | change+ )
}