<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
샘플 값은 다음을 포함한다 Sample values include:
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>