<eTree>

<eTree> (árbol integrado) representa una alternativa al elemento árbol para la representación de estructuras del tipo árbol enraizado ordenado 19.3 Another Tree Notation
Módulonets — 19 Graphs, Networks, and Trees
Atributos att.typed (@type, @subtype)
valueadscribe al árbol integrado un valor, que puede ser una estructura de rasgos u otro elemento de análisis.
Estado Necesario cuando se aplica
Tipo de datos
data.pointer
Valores A valid identifier of a feature structure or other analytic element.
Used byeTree forest triangle model.divPart
May contain
Declaración
element eTree
{
   att.global.attributes,
   att.typed.attributes,
   attribute value { data.pointer }?,
   ( label?, ( eTree | triangle | eLeaf | model.ptrLike )* )
}
Ejemplo
<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.