<timeline>

<timeline> (timeline) 時間的なまとまりを示すために、発話テキストの要素をリンクすることがで きる、時間軸上の順序付き時点の集合を示す。 [16.4.2 Placing Synchronous Events in Time]
モジュール linking — Linking, Segmentation, and Alignment
属性
origin⚓︎ 時間軸の起点示す。すなわち、始点の時間。
状態 任意
データ型 teidata.pointer
unit⚓︎ 時間軸を構成する属性intervalの値に対応する、時間単位 を特定する。
状態 任意
データ型 teidata.enumerated
提案する値は以下の通り:
d
(days)
h
(hours)
min
(minutes)
s
(seconds)
ms
(milliseconds)
interval⚓︎ 間隔を表す数値を示す。
状態 任意
データ型 teidata.interval
解説

irregularは、時間軸上の間隔がはっきりしないことを 示す。値regularは、間隔が均等にとられていることを示 す。但し、その間隔の大きさは不明である。属性値が数値の場合、こ の大きさにより間隔は均等にとられていることを示す。時間軸上にあ る時点の属性intervalが、異なる値をとる場合、その値 により、時間軸上にある値を上書きすると解釈される。

クラブのメンバー
上位
analysis: cl m phr s span w
figures: cell figure table
linking: ab seg standOff
nets: graph
spoken: u writing
tagdocs: eg valDesc
textcrit: lem rdg wit witDetail
verse: metSym rhyme
下位
linking: when
<timeline xml:id="TL01unit="ms">
 <when xml:id="TL-w0absolute="11:30:00"/>
 <when xml:id="TL-w1interval="unknown"
  since="#TL-w0"/>

 <when xml:id="TL-w2interval="100"
  since="#TL-w1"/>

 <when xml:id="TL-w3interval="200"
  since="#TL-w2"/>

 <when xml:id="TL-w4interval="150"
  since="#TL-w3"/>

 <when xml:id="TL-w5interval="250"
  since="#TL-w4"/>

 <when xml:id="TL-w6interval="100"
  since="#TL-w5"/>

</timeline>
Content model
<content>
 <elementRef key="whenminOccurs="1"
  maxOccurs="unbounded"/>

</content>
宣言
<rng:element name="timeline">
 <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:optional>
  <rng:attribute name="origin">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="unit">
   <rng:choice>
    <rng:value>d</rng:value>
    <rng:value>h</rng:value>
    <rng:value>min</rng:value>
    <rng:value>s</rng:value>
    <rng:value>ms</rng:value>
    <rng:ref name="teidata.enumerated"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="interval">
   <rng:ref name="teidata.interval"/>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:ref name="when"/>
 </rng:oneOrMore>
</rng:element>
element timeline
{
   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 origin { teidata.pointer }?,
   attribute unit { "d" | "h" | "min" | "s" | "ms" | teidata.enumerated }?,
   attribute interval { teidata.interval }?,
   when+
}