macro.abContent

macro.abContent (anonymous block content) defines the content of anonymous block elements. [1.3 The TEI Class System]
モジュール tei — The TEI Infrastructure
当該モジュールを使用するもの
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <textNode/>
  <classRef key="model.paraPart"/>
  <elementRef key="ab"/>
 </alternate>
</content>
宣言
<rng:define name="macro.abContent">
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.paraPart"/>
   <rng:ref name="ab"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:define>
macro.abContent = ( text | model.paraPart | ab )*