<transpose>

<transpose> describes a single textual transposition as an ordered list of at least two pointers specifying the order in which the elements indicated should be re-combined. [11.3.4.5 Transpositions]
組件 transcr — Representation of Primary Sources
屬性
可包含在於
transcr: listTranspose
可包含
core: ptr

Transposition is usually indicated in a document by a metamark such as a wavy line or numbering.

The order in which ptr elements appear within a transpose element should correspond with the desired order, as indicated by the metamark.

例子
<transpose>
 <ptr target="#ib02"/>
 <ptr target="#ib01"/>
</transpose>

The transposition recorded here indicates that the content of the element with identifier ib02 should appear before the content of the element with identifier ib01.

Content model
<content>
 <elementRef key="ptrminOccurs="2"
  maxOccurs="unbounded"/>

</content>
宣告
<rng:element name="transpose">
 <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:group>
  <rng:ref name="ptr"/>
  <rng:ref name="ptr"/>
  <rng:zeroOrMore>
   <rng:ref name="ptr"/>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element transpose
{
   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,
   ( ptr, ptr, ptr* )
}