<graph>
<graph> グラフを示す.ノードと矢(無向の場合は辺)の集合. [19.1 Graphs and Digraphs] | |||||||||||||||||||||||||||
モジュール | nets — 19 Graphs, Networks, and Trees | ||||||||||||||||||||||||||
属性 | att.global (@xml:id, @n, @xml:lang, @rend, @style, @rendition, @xml:base, @xml:space) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change))
| ||||||||||||||||||||||||||
当該モジュールを使用するもの | |||||||||||||||||||||||||||
上位 | figures: figure header: change handNote licence scriptNote typeNote msdescription: accMat acquisition additions collation condition custEvent decoNote filiation foliation layout musicNotation origin provenance source support surrogates tagdocs: specGrp transcr: metamark | ||||||||||||||||||||||||||
下位 | figures: figure notatedMusic textcrit: witDetail transcr: addSpan damageSpan delSpan fw listTranspose metamark space substJoin | ||||||||||||||||||||||||||
宣言 |
element graph { att.global.attributes, att.global.linking.attributes, att.global.analytic.attributes, att.global.facs.attributes, att.global.change.attributes, attribute type { "undirected" | "directed" | "transitionNetwork" | "transducer" | xsd:Name }?, attribute order { data.count }?, attribute size { data.count }?, ( ( label, model.global* )?, ( ( ( node, model.global* )+, ( arc, model.global* )* ) | ( ( arc, model.global* )+, ( node, model.global* )+ ) ) ) } | ||||||||||||||||||||||||||
例 | <graph xml:id="cug1" type="undirected" order="5" size="4" rend="LABEL-PLACE bottom center NODE-FRAME none ARC solid line"> <label>Airline Connections in Southwestern USA</label> <node xml:id="lax" degree="2"> <label>LAX</label> </node> <node xml:id="lvg" degree="2"> <label>LVG</label> </node> <node xml:id="phx" degree="3"> <label>PHX</label> </node> <node xml:id="tus" degree="1"> <label>TUS</label> </node> <node xml:id="cib" degree="0"> <label>CIB</label> </node> <arc from="#lax" to="#lvg"/> <arc from="#lax" to="#phx"/> <arc from="#lvg" to="#phx"/> <arc from="#phx" to="#tus"/> </graph> | ||||||||||||||||||||||||||
解説 |
ひとつ以上のノードと,ゼロ以上の矢(辺).
|