<eTree>
<eTree> 順序付き根付き木を構成する部分木を示す. 19.3 他の木表現 | |||||||||
モジュール | nets — 19 グラフ,ネットワーク,木 | ||||||||
属性 | att.typed (@type, @subtype)
| ||||||||
当該モジュールを使用するもの | |||||||||
下位 | |||||||||
宣言 |
element eTree { att.global.attributes, att.typed.attributes, attribute value { data.pointer }?, ( label?, ( eTree | triangle | eLeaf | model.ptrLike )* ) } | ||||||||
例 | <eTree n="ex1"> <label>PP</label> <eTree> <label>P</label> <eLeaf> <label>with</label> </eLeaf> </eTree> <eTree> <label>NP</label> <eTree> <label>Art</label> <eLeaf> <label>the</label> </eLeaf> </eTree> <eTree> <label>N</label> <eLeaf> <label>periscope</label> </eLeaf> </eTree> </eTree> </eTree> | ||||||||
解説 | ひとつ以上の部分木や部分木の葉に続いて,選択的にラベルをとる. |