<group>

<group> ある単位として独立している個別テキストをまとめた複合テキストを示す. 例えば,ある著者の作品集やエッセイ集など. 4 テキスト構造モジュール 4.3.1 複合テキスト 15.1 Varieties of Composite Text
モジュールtextstructure — 4 テキスト構造モジュール
属性 att.declaring (@decls)
当該モジュールを使用するもの
下位
宣言

<rng:element name="group">
<rng:ref name="att.global.attributes"/>
<rng:ref name="att.declaring.attributes"/>
<rng:group>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="model.divTop"/>
   <rng:ref name="model.global"/>
  </rng:choice>
 </rng:zeroOrMore>
 <rng:group>
  <rng:choice>
   <rng:ref name="text"/>
   <rng:ref name="group"/>
  </rng:choice>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="text"/>
    <rng:ref name="group"/>
    <rng:ref name="model.global"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
 <rng:zeroOrMore>
  <rng:ref name="model.divBottom"/>
 </rng:zeroOrMore>
</rng:group>
</rng:element>
element group
{
   att.global.attributes,
   att.declaring.attributes,
   (
      ( model.divTop | model.global )*,
      ( ( text | group ), ( text | group | model.global )* ),
      model.divBottom*
   )
}
<egXML><text>
<!-- Section on Alexander Pope starts -->
  <front>
<!-- biographical notice by editor -->
  </front>
  <group>
   <text>
<!-- first poem -->
   </text>
   <text>
<!-- second poem -->
   </text>
  </group>
</text>
<!-- end of Pope section-->
</egXML>