<dimensions>

<dimensions> contains a dimensional specification. 10.3.4 Dimensions
Modul msdescription — 10 Manuscript Description
Neben global gültigen Attributen att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
type indicates which aspect of the object is being measured.
Zustand Optional
Datentyp

<rng:ref name="data.enumerated"/>
data.enumerated
Beispielwerte sind etwa:
leaves
dimensions relate to one or more leaves (e.g. a single leaf, a gathering, or a separately bound part)
ruled
dimensions relate to the area of a leaf which has been ruled in preparation for writing.
pricked
dimensions relate to the area of a leaf which has been pricked out in preparation for ruling (used where this differs significantly from the ruled area, or where the ruling is not measurable).
written
dimensions relate to the area of a leaf which has been written, with the height measured from the top of the minims on the top line of writing, to the bottom of the minims on the bottom line of writing.
miniatures
dimensions relate to the miniatures within the manuscript
binding
dimensions relate to the binding in which the codex or manuscript is contained
box
dimensions relate to the box or other container in which the manuscript is stored.
Verwendet von
Kann enthalten
msdescription: depth dim height width
Deklaration

<rng:element name="dimensions">
 <rng:ref name="att.global.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.dimensions.attributes,
   att.ranging.attributes,
   attribute type { data.enumerated }?,
   ( ( dim | model.dimLike )* )
}

<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>
Beispiel
<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>
Beispiel

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>