<leaf>

<leaf> (leaf) 木(構造)における葉(終端ノード)を示す。 [19.2 Trees]
モジュール nets — Graphs, Networks, and Trees
属性
value⚓︎ 素性構造または他の分析要素へのポインタを示す。
状態 任意
データ型 teidata.pointer
parent⚓︎ 葉の親要素の識別子を示す。
状態 任意
データ型 teidata.pointer
follow⚓︎ 当該葉の姉要素の識別子を示す。
状態 任意
データ型 teidata.pointer
解説

当該木が順序付きでない、または部分的順序付きである場合、当該属 性は、当該葉または属性値が示す要素の相対的順序を示す。

上位
nets: tree
下位
core: label
解説

葉の入り次数は常に1であり、出の次数は常に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?
}