<move>

<move> (movement) marks the actual entrance or exit of one or more characters on stage. 7.2.3 Stage Directions
組件drama — 7 Performance Texts
屬性 att.ascribed (@who)
typecharacterizes the movement, for example as an entrance or exit.
狀態 非必備的
資料類型
data.enumerated
被推薦的值包含:
entrance
character is entering the stage.
exit
character is exiting the stage.
onStage
character moves on stage
wherespecifies the direction of a stage movement.
狀態 非必備的
資料類型 1–∞ occurrences of
data.enumerated
以空白鍵隔開
實例值包含:
L
(left) stage left
R
(right) stage right
C
(center) centre stage
Full blocking information will normally require combinations of values, (for example ‘UL’ for ‘upper stage left’) and may also require more detailed encoding of speed, direction etc. Full documentation of any coding system used should be provided in the header.
perf (performance) identifies the performance or performances in which this movement occurred as specified.
狀態 非必備的
資料類型 1–∞ occurrences of
data.pointer
以空白鍵隔開
The references are derived from the xml:id attribute on a <performance> element.
屬於 model.stageLike
可包含空白元素
宣告
element move
{
   att.global.attributes,
   att.ascribed.attributes,
   attribute type { "entrance" | "exit" | "onStage" | xsd:Name }?,
   attribute where { list { data.enumerated+ } }?,
   attribute perf { list { data.pointer+ } }?,
   empty
}
例子
<performance xml:id="perf1">
 <p>First performance</p>
 <castList>
  <castItem>
   <role xml:id="bellaf">Bellafront</role>
  </castItem>
<!-- ... -->
 </castList>
</performance>
<!-- ... -->
<stage type="entrance">
 <move
   who="#bellaf"
   type="enter"
   where="L"
   perf="#perf1"/>

Enter Bellafront mad.
</stage>