<eTree>

<eTree> ("arbre englobant") élément à utiliser lorsqu'on a besoin d'imbriquer plusieurs structures arborescentes ordonnées et à racine, pour encoder chacune de ces structures (en effet, il n'est pas possible d'imbriquer des éléments tree). 19.3 Another Tree Notation
Module nets — 19 Graphs, Networks, and Trees
En complément des attributs globaux att.typed (@type, @subtype)
value fournit l'identifiant de l'objet représenté par l'"arbre englobant" ; cet objet peut être une paire nom-valeur ou tout autre élément analytique.
Statut Recommendé quand applicable
Type de données

<rng:ref name="data.pointer"/>
data.pointer
Valeurs A valid identifier of a feature structure or other analytic element.
Utilisé par
Peut contenir
Declaration

<rng:element name="eTree">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:group>
  <rng:optional>
   <rng:ref name="label"/>
  </rng:optional>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="eTree"/>
    <rng:ref name="triangle"/>
    <rng:ref name="eLeaf"/>
    <rng:ref name="model.ptrLike"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element eTree
{
   att.global.attributes,
   att.typed.attributes,
   attribute value { data.pointer }?,
   ( label?, ( eTree | triangle | eLeaf | model.ptrLike )* )
}
Exemple
<eTree n="ex1">
 <label>PP</label>
 <eTree>
  <label>P</label>
  <eLeaf>
   <label>with</label>
  </eLeaf>
 </eTree>
 <eTree>
  <label>NP</label>
  <eTree>
   <label>Art</label>
   <eLeaf>
    <label>the</label>
   </eLeaf>
  </eTree>
  <eTree>
   <label>N</label>
   <eLeaf>
    <label>periscope</label>
   </eLeaf>
  </eTree>
 </eTree>
</eTree>
Note
une étiquette facultative suivie de zéro à plusieurs arbres englobants, triangles, ou feuilles.