<graph>
<graph> codifica un gráfico, es decir un conjunto de nodos y arcos que conectan los nodos. [19.1 Graphs and Digraphs] | |||||||||||||||||||||
Módulo | nets — Graphs, Networks, and Trees | ||||||||||||||||||||
Atributos | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (type, @subtype)
| ||||||||||||||||||||
Miembro de | |||||||||||||||||||||
Contenido en | header: change handNote licence scriptNote linking: standOff msdescription: accMat acquisition additions collation condition custEvent decoNote filiation foliation layout musicNotation origin provenance signatures source summary support surrogates typeNote namesdates: occupation tagdocs: specGrp transcr: metamark | ||||||||||||||||||||
Puede contener | figures: figure notatedMusic transcr: addSpan damageSpan delSpan fw listTranspose metamark space substJoin | ||||||||||||||||||||
Nota | One or more nodes and zero or more arcs in any order. | ||||||||||||||||||||
Ejemplo | <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> | ||||||||||||||||||||
Content model | <content> | ||||||||||||||||||||
Declaración | <rng:element name="graph"> element graph { 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, att.typed.attribute.subtype, attribute type { teidata.enumerated }?, attribute order { teidata.count }?, attribute size { teidata.count }?, ( ( label, model.global* )?, ( ( ( node, model.global* )+, ( arc, model.global* )* ) | ( ( arc, model.global* )+, ( node, model.global* )+ ) ) ) } |