<floatingText>

<floatingText> 단일 또는 혼합이든지 간에, 어떤 지점에서 그것을 포함한 텍스트를 중단시키고 그 이후 주변 텍스트가 다시 시작하는 텍스트. 4.3.2 Floating Texts
모듈 textstructure — 4 Default Text Structure
전체 속성에 부가 att.declaring (@decls) att.typed (@type, @subtype)
에 의해 사용된
포함할 수 있다
선언

<rng:element name="floatingText">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.declaring.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="model.global"/>
  </rng:zeroOrMore>
  <rng:optional>
   <rng:ref name="front"/>
   <rng:zeroOrMore>
    <rng:ref name="model.global"/>
   </rng:zeroOrMore>
  </rng:optional>
  <rng:choice>
   <rng:ref name="body"/>
   <rng:ref name="group"/>
  </rng:choice>
  <rng:zeroOrMore>
   <rng:ref name="model.global"/>
  </rng:zeroOrMore>
  <rng:optional>
   <rng:ref name="back"/>
   <rng:zeroOrMore>
    <rng:ref name="model.global"/>
   </rng:zeroOrMore>
  </rng:optional>
 </rng:group>
</rng:element>
element floatingText
{
   att.global.attributes,
   att.declaring.attributes,
   att.typed.attributes,
   (
      model.global*,
      ( front, model.global* )?,
      ( body | group ),
      model.global*,
      ( back, model.global* )?
   )
}
<TEI>
 <teiHeader/>
 <text>
  <body>
   <div type="scene">
    <sp>
     <p>Hush, the players begin...</p>
    </sp>
    <floatingText type="pwp">
     <body>
      <div type="act">
       <sp>
        <l>In Athens our tale takes place ....</l>
       </sp>
<!-- ... rest of nested act here -->
      </div>
     </body>
    </floatingText>
    <sp>
     <p>Now that the play is finished ...</p>
    </sp>
   </div>
  </body>
 </text>
</TEI>