<dimensions>

<dimensions> contains a dimensional specification. 10.3.4 Dimensions
Modulmsdescription — 10 Manuscript Description
Attribute att.dimensions (@unit, @quantity, @extent, @atLeast, @atMost, @min, @max, @precision, @scope)
typeindicates 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 height width
Deklaration

<rng:element name="dimensions">
<rng:ref name="att.global.attributes"/>
<rng:ref name="att.dimensions.attributes"/>
<rng:optional>
 <rng:attribute name="type">
  <rng:ref name="data.enumerated"/>
 </rng:attribute>
</rng:optional>
<rng:group>
<!--this group is only needed for DTDs-->
 <rng:optional>
  <rng:ref name="height"/>
 </rng:optional>
 <rng:optional>
  <rng:ref name="width"/>
 </rng:optional>
 <rng:optional>
  <rng:ref name="depth"/>
 </rng:optional>
</rng:group>
</rng:element>
element dimensions
{
   att.global.attributes,
   att.dimensions.attributes,
   attribute type { data.enumerated }?,
   ( height?, width?, depth? )
}
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="cmscope="mostquantity="90"/>
 <width unit="cmscope="mostquantity="48"/>
</dimensions>
<dimensions unit="in">
 <height quantity="12"/>
 <width quantity="10"/>
</dimensions>