<eTree>

<eTree> (albero integrato) rapresenta un'alternativa all'elemento albero per la rappresentazione di strutture del tipo albero radicato ordinato 19.3 Another Tree Notation
Modulonets — 19 Graphs, Networks, and Trees
Attributi att.typed (@type, @subtype)
valueassegna all'albero integrato un valore, che può essere una struttura di tratti o altro elemento di analisi
Stato Richiesto se applicabile
Tipo di dati
data.pointer
Valori A valid identifier of a feature structure or other analytic element.
Usato daeTree forest triangle model.divPart
Può contenere
Dichiarazione
element eTree
{
   att.global.attributes,
   att.typed.attributes,
   attribute value { data.pointer }?,
   ( label?, ( eTree | triangle | eLeaf | model.ptrLike )* )
}
Esempio
<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>
Nota
an optional label followed by zero or more embedding trees, triangles, or embedding leafs.