<dimensions>

<dimensions> (dimensions) contient une spécification des dimensions. [11.3.4 Dimensions]
Module msdescription — Manuscript Description
Attributs
type⚓︎ indique quel aspect de l'objet est mesuré.
Dérivé de att.typed
Statut Optionel
Type de données teidata.enumerated
Membre du
Contenu dans
analysis: cl phr s span
cmc: post
figures: cell figDesc
iso-fs: fDescr fsDescr
linking: ab seg
spoken: u writing
tagdocs: eg valDesc
verse: metSym rhyme
Peut contenir
msdescription: depth dim height width
Note

Contient la mesure de la hauteur, de la largeur et de la profondeur d'un objet à 1, 2 ou 3 dimensions.

Exemple
<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>
Exemple
<dimensions type="binding">
 <height unit="mm">328 (336)</height>
 <width unit="mm">203</width>
 <depth unit="mm">74</depth>
</dimensions>
Exemple

Quand de simples quantités numériques sont impliquées, elles peuvent être exprimées par l'attribut quantity sur chaque ou sur tous les éléments enfants, comme dans l'exemple suivant :

<dimensions type="binding">
 <height unit="mm">170</height>
 <width unit="mm">98</width>
 <depth unit="mm">15</depth>
</dimensions>
<dimensions type="binding">
 <height unit="mm">168</height>
 <width unit="mm">106</width>
 <depth unit="mm">22</depth>
</dimensions>
Schematron

<sch:rule context="tei:dimensions">
<sch:report test="count(tei:width) gt 1"> The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:height) gt 1"> The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:depth) gt 1"> The element <sch:name/> may appear once only
</sch:report>
</sch:rule>
Modèle de contenu
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="dim"/>
  <classRef key="model.dimLike"/>
 </alternate>
</content>
Schéma Declaration
<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 )*
}