<dimensions>
<dimensions> contains a dimensional specification. 10.3.4 Dimensions | |||||||||
Module | msdescription — 10 Manuscript Description | ||||||||
In addition to global attributes | att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
|
||||||||
Used by | |||||||||
May contain | |||||||||
Declaration |
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> |
|||||||||
Example |
<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> |
||||||||
Example |
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. |
||||||||
Example |
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> |
||||||||
Note |
Contains no more than one of each of the specialised elements
used to express a three-dimensional object's height, width, and
depth, combined with any number of other kinds of dimensional
specification.
|