<arc>

<arc> (arc) グラフを構成するノード間の辺を示す. [19.1 Graphs and Digraphs]
モジュールnets — Graphs, Networks, and Trees
属性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))
from当該辺が有向である場合,起点となるノードを示す.
状態 必須
データ型 teidata.pointer
to当該辺が有効である場合,終点となるノードを示す.
状態 必須
データ型 teidata.pointer
上位
nets: graph
下位
core: label
解説

要素arcは,ラベル付き辺の場合には必ず使用される. そうでない場合,辺は,要素nodeの属性adj, adjTo, adjFromとして示すことも可能である. しかし,この方法は記述が冗長になるかもしれない.

要素labelの数は,0,1,2の場合がある.最初に出現する要素 labelには,当該辺のラベルが付与される.2番目に来る要素 labelには,当該辺の2番目のラベルが付与される.変換グラフ をマークアップする場合には,2番目のラベルが使用されるべきである.

<arc from="#T3to="#T3">
 <label>OLD</label>
 <label>VIEUX</label>
</arc>
Content model
<content>
 <sequence minOccurs="0">
  <elementRef key="label"/>
  <elementRef key="labelminOccurs="0"/>
 </sequence>
</content>
宣言
<rng:element name="arc">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:attribute name="from">
  <rng:ref name="teidata.pointer"/>
 </rng:attribute>
 <rng:attribute name="to">
  <rng:ref name="teidata.pointer"/>
 </rng:attribute>
 <rng:optional>
  <rng:group>
   <rng:ref name="label"/>
   <rng:optional>
    <rng:ref name="label"/>
   </rng:optional>
  </rng:group>
 </rng:optional>
</rng:element>
element arc
{
   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,
   attribute from { teidata.pointer },
   attribute to { teidata.pointer },
   ( label, label? )?
}