<dimensions>

<dimensions> 尺寸的詳細說明。 10.3.4 Dimensions
組件 msdescription — 10 Manuscript Description
除全域屬性以外 att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
type 指出物件被測量的部分。
狀態 非必備的
資料類型

<rng:ref name="data.enumerated"/>
data.enumerated
實例值包含:
leaves
一張或多張頁面的尺寸大小 (例如單一頁面、聚集頁面、或分開裝訂的部份)
ruled
頁面上劃好線以備書寫的範圍大小。
pricked
頁面上刺好記號以備劃線的範圍大小 (用在和畫線範圍不同的位置,或是畫線無法測量的位置) 。
written
頁面上已書寫文字的範圍大小,高度由最頂行文字的頂端測量至最底行文字的底端。
miniatures
手稿中圖畫的尺寸大小
binding
手抄本或手稿裝訂的尺寸大小
box
手稿所儲存的箱子或其他容器的尺寸大小
屬於
可包含
msdescription: depth dim height width
宣告

<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>
例子
<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>
例子

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>