<move>

<move> (動作) 標記舞台上人物的實際進場或退場。 [7.2.4 Stage Directions]
組件drama — 7 Performance Texts
屬性att.global (@xml:id, @n, @xml:lang, @rend, @rendition, @xml:base, @xml:space) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) att.ascribed (@who)
type說明舞台動作,例如進場或退場。
狀態 非必備的
資料類型

<rng:ref name="data.enumerated"/>
data.enumerated
被推薦的值包含:
entrance
角色進場
exit
角色退場
onStage
character moves on stage
where說明舞台動作的方向。
狀態 非必備的
資料類型 1–∞ 次可出現: 

<rng:ref name="data.enumerated"/>
data.enumerated
以空白鍵隔開
實例值包含:
L
(left) 舞台左側
R
(right) 舞台右側
C
(center) 舞台中央
perf (performance) 指明這項舞台動作出現在哪些演出中。
狀態 非必備的
資料類型 1–∞ 次可出現: 

<rng:ref name="data.pointer"/>
data.pointer
以空白鍵隔開
The references are derived from the xml:id attribute on a performance element.
屬於
可包含在於
可包含空白元素
宣告

<rng:element name="move">
 <rng:ref name="att.global.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.ascribed.attributes"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:choice>
    <rng:value>entrance</rng:value>
    <rng:value>exit</rng:value>
    <rng:value>onStage</rng:value>
    <rng:data type="Name"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="where">
   <rng:list>
    <rng:ref name="data.enumerated"/>
    <rng:zeroOrMore>
     <rng:ref name="data.enumerated"/>
    </rng:zeroOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="perf">
   <rng:list>
    <rng:ref name="data.pointer"/>
    <rng:zeroOrMore>
     <rng:ref name="data.pointer"/>
    </rng:zeroOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:empty/>
</rng:element>
element move
{
   att.global.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.ascribed.attributes,
   attribute type { "entrance" | "exit" | "onStage" | xsd:Name }?,
   attribute where { list { data.enumerated, data.enumerated* } }?,
   attribute perf { list { data.pointer, data.pointer* } }?,
   empty
}
例子
<performance xml:id="zh-tw_perf1">
 <p>第一場戲</p>
 <castList>
  <castItem>
   <role xml:id="zh-tw_bellaf">楊四郎</role>
  </castItem>
<!-- 其他角色 -->
 </castList>
</performance>
<!-- ... -->
<stage type="entrance">
 <move
   who="#zh-tw_bellaf"
   type="enter"
   where="L"
   perf="#perf1"/>

進場:楊四郎,鬱悶思鄉。
</stage>