<move>

<move> (movement) 舞台上で,ひとり以上の登場人物の出やはけを示す. 7.2.3 Stage Directions
モジュールdrama — 7 Performance Texts
属性 att.ascribed (@who)
type 当該動きの分類を示す.例えば,出,はけ,など.
状態 任意
データ型
data.enumerated
提案する値は以下の通り:
entrance
登場人物が舞台に出る.
exit
登場人物が舞台からはける.
onStage
登場人物が舞台上で移動する.
where 舞台上の動きの方向を示す.
状態 任意
データ型 1–∞ occurrences of
data.enumerated
空白文字で区切られる
例としての値は以下の通り:
L
(left) 上手.
R
(right) 下手.
C
(center) 舞台中央.
解説
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) 当該動きの演技を示す.
状態 任意
データ型 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>