<dimensions>

<dimensions> contiene cualquier tipo de especificación referente a las dimensiones. [10.3.4 Dimensions]
Módulomsdescription — 10 Manuscript Description
Atributosatt.global (@xml:id, @n, @xml:lang, @rend, @rendition, @xml:base, @xml:space) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence))
typeindica que aspecto del objeto se mide.
Estado Opcional
Tipo de datos

<rng:ref name="data.enumerated"/>
data.enumerated
Posibles valores:
leaves
las dimensiones se relacionan con una o más hojas (p.ej. una sola hoja, un conjunto, o un intervalo)
ruled
las dimensiones se refieren al área de una hoja que se ha preparado para la escritura.
pricked
las dimensiones se refieren al área de una hoja que ha sido agujereada en la preparación para la escritura (utilizado donde esto difiere significativamente del área lineada, o donde la lineación no es mensurable).
written
las dimensiones se refiere al área de una hoja que ha sido escrita, con la altura medida desde la línea superior de escritura a la parte inferior de la última línea de la escritura.
miniatures
las dimensiones relativas a las miniaturas del manuscrito
binding
las dimensiones se refieren a la encuadernación que contiene el códice o el manuscrito
box
las dimensiones se refieren a la caja o a cualquier otro contenedor en qué se conserva el manuscrito.
Usado por
Contenido en
analysis: cl phr s span
figures: cell figDesc
iso-fs: fDescr fsDescr
linking: ab seg
spoken: u writing
tagdocs: valDesc
verse: metSym rhyme
Puede contener
msdescription: depth dim height width
Declaración

<rng:element name="dimensions">
 <rng:ref name="att.global.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.dimensions.attributes"/>
 <rng:ref name="att.ranging.attributes"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:ref name="data.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:group>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="dim"/>
    <rng:ref name="model.dimLike"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element dimensions
{
   att.global.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.dimensions.attributes,
   att.ranging.attributes,
   attribute type { data.enumerated }?,
   ( ( dim | model.dimLike )* )
}
Schematron

<s:report test="count(tei:width)> 1">Width element may appear once only
</s:report>
<s:report test="count(tei:height)> 1">Height element may appear once only
</s:report>
<s:report test="count(tei:depth)> 1">Depth element may appear once only
</s:report>
Ejemplo
<dimensions type="leaves">
 <height scope="range">157-160</height>
 <width>105</width>
</dimensions>
<dimensions type="ruled">
 <height scope="most">90</height>
 <width scope="most">48</width>
</dimensions>
<dimensions unit="in">
 <height>12</height>
 <width>10</width>
</dimensions>
Ejemplo

This element may be used to record the dimensions of any text-bearing object, not necessarily a codex. For example:

<dimensions type="panels">
 <height scope="all">7004</height>
 <width scope="all">1803</width>
 <dim type="relief" unit="mm">345</dim>
</dimensions>

This might be used to show that the inscribed panels on some (imaginary) monument are all the same size (7004 by 1803 cm) and stand out from the rest of the monument by 345 mm.

Ejemplo

When simple numeric quantities are involved, they may be expressed on the quantity attribute of any or all of the child elements, as in the following example:

<dimensions type="leaves">
 <height scope="range">157-160</height>
 <width quantity="105"/>
</dimensions>
<dimensions type="ruled">
 <height unit="cm" scope="most" quantity="90"/>
 <width unit="cm" scope="most" quantity="48"/>
</dimensions>
<dimensions unit="in">
 <height quantity="12"/>
 <width quantity="10"/>
</dimensions>