<timeline>

<timeline> (timeline) provides a set of ordered points in time which can be linked to elements of a spoken text to create a temporal alignment of that text. 16.5.2 Placing Synchronous Events in Time
Modullinking — 16 Linking, Segmentation, and Alignment
Attribute
origindesignates the origin of the timeline, i.e. the time at which it begins.
Zustand Obligatorisch
Datentyp
data.pointer
Werte must point either to one of the <when> elements in its content, or to another <timeline> element.
Anmerkung
If the absolute value for the time of origin is not known, an arbitrary time (such as 00:00) should be used.
unitspecifies the unit of time corresponding to the interval value of the timeline or of its constituent points in time.
Zustand Vorgeschrieben wenn zutreffend
Datentyp
data.enumerated
Empfohlene Werte sind:
d
(days)
h
(hours)
min
(minutes)
s
(seconds)
ms
(milliseconds)
intervalspecifies the numeric portion of a time interval
Zustand Optional
Datentyp
xsd:float { minExclusive = "0" } | "regular" | "irregular"
Werte a positive number, or one of the two special values irregular or regular.
Anmerkung
The value irregular indicates uncertainty about all the intervals in the timeline; the value regular indicates that all the intervals are evenly spaced, but the size of the intervals is not known; numeric values indicate evenly spaced values of the size specified. If individual points in time in the timeline are given different values for the interval attribute, those values locally override the value given in the timeline.
Verwendet von model.global.meta
Kann enthalten
linking: when
Deklaration
element timeline
{
   att.global.attributes,
   attribute origin { data.pointer },
   attribute unit { "d" | "h" | "min" | "s" | "ms" | xsd:Name }?,
   attribute interval
   {
      xsd:float { minExclusive = "0" } | "regular" | "irregular"
   }?,
   when+
}
Beispiel
<timeline xml:id="TL01origin="#TL-w0unit="ms">
 <when xml:id="TL-w0absolute="11:30:00"/>
 <when xml:id="TL-w1interval="unknownsince="#TL-w0"/>
 <when xml:id="TL-w2interval="100since="#TL-w1"/>
 <when xml:id="TL-w3interval="200since="#TL-w2"/>
 <when xml:id="TL-w4interval="150since="#TL-w3"/>
 <when xml:id="TL-w5interval="250since="#TL-w4"/>
 <when xml:id="TL-w6interval="100since="#TL-w5"/>
</timeline>
Anmerkung
one or more points in time, one of which is its origin