<ab>

<ab> (blocco anonimo) contiene una qualsiasi unità testuale a livello di componente che funge da contenitore anonimo di sintagmi o elementi interlivello simili al paragrafo ma senza il bagaglio semantico di quest'ultimo 16.3 Blocks, Segments, and Anchors
Modulo linking — 16 Linking, Segmentation, and Alignment
Oltre agli attributi globali att.typed (@type, @subtype) att.declaring (@decls)
part indica se il blocco è completo o meno
Stato Obbligatorio se applicabile
I valori legali sono:
Y
(sì) il blocco è incompleto
N
(no) il blocco è completo o non viene rivendicata la completezza [Valore di default]
I
(iniziale) parte iniziale di un blocco incompleto
M
(mediano) parte intermedia di un blocco incompleto
F
(finale) parte finale di un blocco incompleto
Usato da
Può contenere
Dichiarazione

<rng:element name="ab">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:ref name="att.declaring.attributes"/>
 <rng:optional>
  <rng:attribute name="part" a:defaultValue="N">
   <rng:choice>
    <rng:value>Y</rng:value>
    <rng:value>N</rng:value>
    <rng:value>I</rng:value>
    <rng:value>M</rng:value>
    <rng:value>F</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:ref name="macro.paraContent"/>
</rng:element>
element ab
{
   att.global.attributes,
   att.typed.attributes,
   att.declaring.attributes,
   attribute part { "Y" | "N" | "I" | "M" | "F" }?,
   macro.paraContent
}
Esempio
<div type="book" n="Genesis">
 <div type="chapter" n="1">
  <ab>In the beginning God created the heaven and the earth.</ab>
  <ab>And the earth was without form, and void; and darkness was upon the face of the deep. And the spirit of God moved upon the face of the waters.</ab>
  <ab>And God said, Let there be light: and there was light.</ab>
<!-- ...-->
 </div>
</div>