<root>

<root> (根節點) 樹狀結構的根節點。 19.2 Trees
組件 nets — 19 Graphs, Networks, and Trees
除全域屬性以外
value 提供一個根節點值,該跟節點為一個功能結構或其他分析元素。
狀態 可應用時推薦應用
資料類型

<rng:ref name="data.pointer"/>
data.pointer
A valid identifier of a feature structure or other analytic element.
children 提供根節點的子節點元素識別符碼列表。
狀態 必備的
資料類型 1–∞ 次可出現: 

<rng:ref name="data.pointer"/>
data.pointer
以空白鍵隔開
A list of valid identifiers.
ord (ordered) 說明根節點是否整齊排列。
狀態 可應用時推薦應用
資料類型

<rng:ref name="data.xTruthValue"/>
data.xTruthValue
outDegree 根節點的向外分支度,即為其子節點的數量。
狀態 非必備的
資料類型

<rng:ref name="data.count"/>
data.count
A nonnegative integer.
屬於
可包含
core: label
宣告

<rng:element name="root">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="data.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="data.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="data.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element root
{
   att.global.attributes,
   attribute value { data.pointer }?,
   attribute children { list { data.pointer+ } },
   attribute ord { data.xTruthValue }?,
   attribute outDegree { data.count }?,
   label?
}
例子
<root xml:id="vp1" children="#vb1 #pn1" outDegree="2">
 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>