<dimensions>

<dimensions> (dimensions) 어떤 차원의 명세를 포함한다. [10.3.4 Dimensions]
모듈 msdescription — Manuscript Description
속성
type⚓︎ 대상의 어떤 측면이 측정되고 있는지를 나타낸다.
Derived from att.typed
상태 수의적
자료 유형 teidata.enumerated
샘플 값은 다음을 포함한다 Sample values include:
leaves
하나 이상의 종이의 장과 관련된 차원(예, 한 장, 접지 모음, 또는 각각 분리되어 엮여진 부분)
ruled
글쓰기를 준비하기 위해 줄 그은 종이 부분과 관련된 차원
pricked
(줄 그은 영역과 다르거나 영역 구분이 측정되지 않은 곳에서 사용되는) 줄을 긋기 위한 준비 과정에서 구멍 뚫은 영역과 관련된 차원
written
글의 첫 번째 줄 상단부터 마지막 줄 하단까지 측정된 높이를 통해 한 장의 글 쓴 영역과 관련된 차원
miniatures
원고의 축소형과 관련된 차원
binding
미제본 원고 또는 원고를 포함하는 제본과 관련된 차원
box
원고가 보관된 박스 또는 용기와 관련된 차원
클럽 회원
에 의해 포함된
analysis: cl phr s span
figures: cell figDesc
iso-fs: fDescr fsDescr
linking: ab seg
spoken: u writing
tagdocs: eg valDesc
verse: metSym rhyme
포함할 수 있다
msdescription: depth dim height width
주석

Contains no more than one of each of the specialized elements used to express a three-dimensional object's height, width, and depth, combined with any number of other kinds of dimensional specification.

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

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="reliefunit="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.

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="most"
  quantity="90"/>

 <width unit="cmscope="mostquantity="48"/>
</dimensions>
<dimensions unit="in">
 <height quantity="12"/>
 <width quantity="10"/>
</dimensions>
Schematron

<sch:report test="count(tei:width)> 1"> The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:height)> 1"> The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:depth)> 1"> The element <sch:name/> may appear once only
</sch:report>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="dim"/>
  <classRef key="model.dimLike"/>
 </alternate>
</content>
선언
<rng:element name="dimensions">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.dimensions.attributes"/>
 <rng:ref name="att.ranging.attributes"/>
 <rng:ref name="att.typed.attribute.subtype"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:ref name="teidata.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="dim"/>
   <rng:ref name="model.dimLike"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element dimensions
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.dimensions.attributes,
   att.ranging.attributes,
   att.typed.attribute.subtype,
   attribute type { teidata.enumerated }?,
   ( dim | model.dimLike )*
}