<num>

<num> (número) contiene un número, escrito en cualquier forma. 3.5.3 Numbers and Measures
Módulo core — 3 Elements Available in All TEI Documents
Además de los atributos globales att.ranging (@atLeast, @atMost, @min, @max)
type indica el tipo de valor numérico.
Estado Opcional
Tipo de datos

<rng:ref name="data.enumerated"/>
data.enumerated
Los valores sugeridos incluyen:
cardinal
número absoluto, p.ej. 21, 21,5
ordinal
número ordinal, p.ej. 21º
fraction
fracción,p.ej. una mitad o tres cuartos
percentage
un porcentaje
value proporciona el valor del número de forma estándard.
Estado Opcional
Tipo de datos

<rng:ref name="data.numeric"/>
data.numeric
Valores a numeric value.
Usado por
Puede contener
Declaración

<rng:element name="num">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.ranging.attributes"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:choice>
    <rng:value>cardinal</rng:value>
    <rng:value>ordinal</rng:value>
    <rng:value>fraction</rng:value>
    <rng:value>percentage</rng:value>
    <rng:data type="Name"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="data.numeric"/>
  </rng:attribute>
 </rng:optional>
 <rng:ref name="macro.phraseSeq"/>
</rng:element>
element num
{
   att.global.attributes,
   att.ranging.attributes,
   attribute type
   {
      "cardinal" | "ordinal" | "fraction" | "percentage" | xsd:Name
   }?,
   attribute value { data.numeric }?,
   macro.phraseSeq
}
Ejemplo
<p>I reached <num type="cardinal" value="21">twenty-one</num> on my <num type="ordinal" value="21">twenty-first</num> birthday... light travels at <num value="10E10">10<hi rend="sup">10</hi>
 </num> cm per second.</p>