<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

<rng:ref name="data.pointer"/>
data.pointer
Valores A valid identifier of a feature structure or other analytic element.
Usado por
Puede contener
Declaración

<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 )* )
}
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>