<move>

<move> (movement) marks the actual entrance or exit of one or more characters on stage. [7.2.4 Stage Directions]
Moduldrama — 7 Performance Texts
Attributeatt.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)
typecharacterizes the movement, for example as an entrance or exit.
Zustand Optional
Datentyp

<rng:ref name="data.enumerated"/>
data.enumerated
Empfohlene Werte sind:
entrance
character is entering the stage.
exit
character is exiting the stage.
onStage
character moves on stage
wherespecifies the direction of a stage movement.
Zustand Optional
Datentyp 1–∞ Vorkommen von 

<rng:ref name="data.enumerated"/>
data.enumerated
Durch Leerzeichen getrennt
Beispielwerte sind etwa:
L
(left) stage left
R
(right) stage right
C
(center) centre stage
perf (performance) identifies the performance or performances in which this movement occurred as specified.
Zustand Optional
Datentyp 1–∞ Vorkommen von 

<rng:ref name="data.pointer"/>
data.pointer
Durch Leerzeichen getrennt
Werte The references are derived from the xml:id attribute on a performance element.
Verwendet von
Enthalten in
Kann enthaltenLeeres Element
Deklaration

<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
}
Beispiel
<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>