macro.phraseSeq.limited

macro.phraseSeq.limited (limited phrase sequence) 一般には、現存資料の転記に使われることはない、一連の文字列と句レベル の要素を定義する。 [1.4.1 Standard Content Models]
モジュール tei — The TEI Infrastructure
当該モジュールを使用するもの
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <textNode/>
  <classRef key="model.limitedPhrase"/>
  <classRef key="model.global"/>
 </alternate>
</content>
宣言
<rng:define name="macro.phraseSeq.limited">
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.limitedPhrase"/>
   <rng:ref name="model.global"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:define>
macro.phraseSeq.limited = ( text | model.limitedPhrase | model.global )*