<move>

<move> (이동) 무대에서 하나 이상의 등장 인물들의 실제적 입장과 퇴장을 표시한다. [7.2.4 Stage Directions]
모듈 drama — Performance Texts
속성
type⚓︎ 예를 들어 입장 또는 퇴장과 같은, 이동의 특성을 기술한다.
Derived from att.typed
상태 수의적
자료 유형 teidata.enumerated
제안값은 다음을 포함한다:
entrance
등장인물이 무대에 등장하고 있다.
exit
등장인물이 무대에서 퇴장하고 있다.
onStage
등장인물이 무대에서 이동한다.
where⚓︎ 무대 이동의 방향을 명시한다.
상태 수의적
자료 유형 1–∞ 출현 teidata.authority 공백문자로 분리됨
샘플 값은 다음을 포함한다 Sample values include:
L
(왼쪽) 무대 왼쪽
R
(오른쪽) 무대 오른쪽
C
(중앙) 무대 중앙
perf⚓︎ (연기) 명시된 대로 이동할 때의 연기를 명시한다.
상태 수의적
자료 유형 1–∞ 출현 teidata.pointer 공백문자로 분리됨
클럽 회원
에 의해 포함된
포함할 수 있다 공백 요소
<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>
선언
<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
}