<move>

<move> (movement) marks the actual movement of one or more characters. [7.2.4 Stage Directions]
Module drama — Performance Texts
Attributes
type⚓︎ characterizes the movement, for example as an entrance or exit.
Derived from att.typed
Status Optional
Datatype teidata.enumerated
Suggested values include:
entrance
character is entering the stage.
exit
character is exiting the stage.
onStage
character moves on stage
where⚓︎ specifies the direction of a stage movement.
Status Optional
Datatype 1–∞ occurrences of teidata.authority separated by whitespace
Sample values include:
L
(left) stage left
R
(right) stage right
C
(center) centre stage
Note

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. URIs may be used as values.

perf⚓︎ (performance) identifies the performance or performances in which this movement occurred as specified by pointing to one or more performance elements.
Status Optional
Datatype 1–∞ occurrences of teidata.pointer separated by whitespace
Member of
Contained by
May contain Empty element
Example
<performance xml:id="perf1">
 <p>First performance</p>
 <castList>
  <castItem>
   <role xml:id="bellaf">Bellafront</role>
  </castItem>
<!-- ... -->
 </castList>
</performance>
<!-- ... -->
<stage type="entrance">
 <move who="#bellaftype="enterwhere="L"
  perf="#perf1"/>
Enter
Bellafront mad.
</stage>
Content model
<content>
 <empty/>
</content>
Schema Declaration
<rng:element name="move">
 <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:ref name="att.ascribed.directed.attributes"/>
 <rng:ref name="att.ascribed.attributes"/>
 <rng:ref name="att.typed.attribute.subtype"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:choice>
    <rng:value>entrance</rng:value>
    <rng:value>exit</rng:value>
    <rng:value>onStage</rng:value>
    <rng:ref name="teidata.enumerated"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="where">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.authority"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="perf">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.pointer"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:empty/>
</rng:element>
element move
{
   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,
   att.ascribed.directed.attributes,
   att.ascribed.attributes,
   att.typed.attribute.subtype,
   attribute type { "entrance" | "exit" | "onStage" | teidata.enumerated }?,
   attribute where { list { teidata.authority+ } }?,
   attribute perf { list { teidata.pointer+ } }?,
   empty
}