<iNode>

<iNode> (intermediate (or internal) node) 木における内部ノードを示す。 [20.2 Trees]
モジュール nets — Graphs, Networks, and Trees
属性
value⚓︎ 内部ノードの値を示す。素性構造向け要素または分析向け要素になる。
状態 任意
データ型 teidata.pointer
<a href="https://translate.tei-c.org/translate.html?edit=iNode.xml"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" aria-label="Translation out of date." viewBox="0 0 16 16" style="position:absolute; top:2px; right:2px; color:red"><title>Translation out of date.</title> <path d="M6.146 7.146a.5.5 0 0 1 .708 0L8 8.293l1.146-1.147a.5.5 0 1 1 .708.708L8.707 9l1.147 1.146a.5.5 0 0 1-.708.708L8 9.707l-1.146 1.147a.5.5 0 0 1-.708-.708L7.293 9 6.146 7.854a.5.5 0 0 1 0-.708z"></path> <path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"></path></svg></a>
children⚓︎ 当該内部ノードの子要素の識別子をまとめたリストを示す。
状態 必須
データ型 1–∞ occurrences of teidata.pointer 空白文字で区切られる
parent⚓︎ 当該ノードの親要素の識別子を示す。
状態 任意
データ型 teidata.pointer
ord⚓︎ (ordered) 当該内部ノードが順序付きかどうかを示す。
状態 任意
データ型 teidata.xTruthValue
解説

属性値trueは、当該内部ノードの子要素は順序付きであ ることを示す。属性値falseは、順序付きでないことを示す。

要素treeの属性ordが値ordを持ち、 当該内部ノードが複数の子要素を持つ時のみ、使用される。

follow⚓︎ 当該ノードの姉要素の識別子を示す。
状態 任意
データ型 teidata.pointer
解説

当該木が順序付きでないか、または部分的な順序付きである場合、当 該属性は、当該内部ノードや属性の値としてある要素が相対的な順序で あることを示す。

outDegree⚓︎ 内部ノードの出の次数(子要素の数)を示す。
状態 任意
データ型 teidata.count
解説

内部ノードの入りの次数(親への辺数)は常に1である。

上位
nets: tree
下位
core: label
<iNode xml:id="pt1children="#GD-UP1"
 parent="#GD-VB1follow="#GD-PN1outDegree="1">

 <label>PT</label>
</iNode>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
宣言
<rng:element name="iNode">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.rendition.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:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="teidata.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="parent">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="teidata.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="follow">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="teidata.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element iNode
{
   att.global.attributes,
   att.global.analytic.attributes,
   att.global.change.attributes,
   att.global.facs.attributes,
   att.global.linking.attributes,
   att.global.rendition.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   attribute value { teidata.pointer }?,
   attribute children { list { teidata.pointer+ } },
   attribute parent { teidata.pointer }?,
   attribute ord { teidata.xTruthValue }?,
   attribute follow { teidata.pointer }?,
   attribute outDegree { teidata.count }?,
   label?
}