<timeline>

<timeline> (escala temporal) indica una serie de puntos ordenados temporalmente los cuales pueden ser enlazados a los elementos de un texto hablado a fin de obtener un alineamiento temporal del texto mismo. 16.5.2 Placing Synchronous Events in Time
Módulolinking — 16 Linking, Segmentation, and Alignment
Atributos
originindica el origen de la escala temporal, es decir, el momento en que inicia.
Estado Necesario
Tipo de datos
data.pointer
Valores must point either to one of the <when> elements in its content, or to another <timeline> element.
Nota
If the absolute value for the time of origin is not known, an arbitrary time (such as 00:00) should be used.
unitespecifica la unidad temporal correspondiente al valor del atributo interval (intervalo) de la escala temporal o de sus puntos constitutivos.
Estado Necesario cuando se aplica
Tipo de datos
data.enumerated
Suggested values include:
d
(días)
h
(horas)
min
(minutes)
s
(segundos)
ms
(milésimas de segundo)
intervalindica los componentes numéricos de un intervalo de tiempo.
Estado Opcional
Tipo de datos
xsd:float { minExclusive = "0" } | "regular" | "irregular"
Valores a positive number, or one of the two special values irregular or regular.
Nota
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.
Used by model.global.meta
May contain
linking: when
Declaración
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+
}
Ejemplo
<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>
Nota
one or more points in time, one of which is its origin