<leaf>

<leaf> (leaf) 標記樹狀結構的葉節點 (終端節點) 。 [19.2 Trees]
組件 nets — Graphs, Networks, and Trees
屬性
value⚓︎ 提供一個連結到功能結構或其他分析元素的指標。
狀態 非必備的
資料類型 teidata.pointer
parent⚓︎ 提供葉節點的父節點識別符碼。
狀態 非必備的
資料類型 teidata.pointer
follow⚓︎ 提供此葉節點所尾隨的元素識別符碼。
狀態 非必備的
資料類型 teidata.pointer
可包含在於
nets: tree
可包含
core: label

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

例子
<leaf xml:id="peri1parent="#n1">
 <label>periscope</label>
</leaf>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
宣告
<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?
}