<group>

<group> contiene el cuerpo de un texto compuesto, es decir, que agrupa un conjunto de textos distintos (o grupos de textos) considerados como una unidad por criterios determinados, por ejemplo la obra completa de un autor, una serie de ensayos, etc. 4 Default Text Structure 4.3.1 Grouped Texts 15.1 Varieties of Composite Text
Módulotextstructure — 4 Default Text Structure
Atributos att.declaring (@decls)
Usado por
Puede contener
Declaración

<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*
   )
}
Ejemplo
<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>