macro.phraseSeq.limited

macro.phraseSeq.limited (限定詞組序列) 定義一連串文字資料與詞組層次元素,通常不用於轉錄現存文件。 [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 )*