<leaf>

<leaf> (leaf) codifica le foglie (nodi terminali) di un albero [19.2 Trees]
Modulo nets — Graphs, Networks, and Trees
Attributi
value⚓︎ assegna alla foglia un valore, che può essere una struttura di tratti o altro elemento di analisi
Stato Opzionale
Tipo di dati teidata.pointer
parent⚓︎ assegna un identificatore al genitore della foglia
Stato Opzionale
Tipo di dati teidata.pointer
follow⚓︎ assegna un identificatore all'elemento che precede la foglia
Stato Opzionale
Tipo di dati teidata.pointer
Contenuto in
nets: tree
Può contenere
core: label
Nota

The in degree of a leaf is always 1, its out degree always 0.

Esempio
<leaf xml:id="peri1parent="#n1">
 <label>periscope</label>
</leaf>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
Dichiarazione
<rng:element name="leaf">
 <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:optional>
  <rng:attribute name="value">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="parent">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="follow">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element leaf
{
   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,
   attribute value { teidata.pointer }?,
   attribute parent { teidata.pointer }?,
   attribute follow { teidata.pointer }?,
   label?
}