<linkGrp>

<linkGrp> (groupe de liens) définit un ensemble d'associations ou de liens hypertextuels. [16.1 Links]
Module linking — Linking, Segmentation, and Alignment
Attributs
Membre du
Contenu dans
analysis: cl m phr s span w
figures: cell figure table
linking: ab seg standOff
nets: graph
spoken: u writing
tagdocs: eg valDesc
textcrit: lem rdg wit witDetail
verse: metSym rhyme
Peut contenir
core: desc ptr
linking: link
Note

Ne peut contenir qu’un ou plusieurs éléments link ou ptr.

Un groupe de liens facilite les opérations de gestion de ces liens ; on devrait l'utiliser pour regrouper un ensemble de liens dans un but précis, et non pas simplement pour donner une valeur par défaut à l'attribut type.

Exemple
<linkGrp type="translation">
 <link target="#CCS1 #SW1"/>
 <link target="#CCS2 #SW2"/>
 <link target="#CCS #SW"/>
</linkGrp>
<div type="volumexml:id="CCS"
 xml:lang="fr">

 <p>
  <s xml:id="CCS1">Longtemps, je me suis couché de bonne heure.</s>
  <s xml:id="CCS2">Parfois, à peine ma bougie éteinte, mes yeux se fermaient si vite que je n'avais pas le temps de me dire : "Je m'endors."</s>
 </p>
<!-- ... -->
</div>
<div type="volumexml:id="SWxml:lang="en">
 <p>
  <s xml:id="SW1">For a long time I used to go to bed early.</s>
  <s xml:id="SW2">Sometimes, when I had put out my candle, my eyes would close so quickly that I had not even time to say "I'm going to sleep."</s>
 </p>
<!-- ... -->
</div>
Exemple
<linkGrp type="translation">
 <link target="#fr_CCS1 #fr_SW1"/>
 <link target="#fr_CCS2 #fr_SW2"/>
 <link target="#fr_CCS #fr_SW"/>
</linkGrp>
<div type="volumexml:id="fr_CCS"
 xml:lang="fr">

 <p>
  <s xml:id="fr_CCS1">Longtemps, je me suis couché de bonne heure.</s>
  <s xml:id="fr_CCS2">Parfois, à peine ma bougie éteinte, mes yeux se fermaient si vite que
     je n'avais pas le temps de me dire : "Je m'endors."</s>
 </p>
</div>
<div type="volumexml:id="fr_SW"
 xml:lang="en">

 <p>
  <s xml:id="fr_SW1">For a long time I used to go to bed early.</s>
  <s xml:id="fr_SW2">Sometimes, when I had put out my candle, my eyes would close so quickly
     that I had not even time to say "I'm going to sleep."</s>
 </p>
</div>
Modèle de contenu
<content>
 <sequence>
  <classRef key="model.descLike"
   minOccurs="0maxOccurs="unbounded"/>

  <alternate minOccurs="1"
   maxOccurs="unbounded">

   <elementRef key="link"/>
   <elementRef key="ptr"/>
  </alternate>
 </sequence>
</content>
Schéma Declaration
<rng:element name="linkGrp">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.pointing.group.attributes"/>
 <rng:ref name="att.pointing.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="model.descLike"/>
  </rng:zeroOrMore>
  <rng:oneOrMore>
   <rng:choice>
    <rng:ref name="link"/>
    <rng:ref name="ptr"/>
   </rng:choice>
  </rng:oneOrMore>
 </rng:group>
</rng:element>
element linkGrp
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.pointing.group.attributes,
   att.pointing.attributes,
   att.typed.attributes,
   ( model.descLike*, ( link | ptr )+ )
}