<unit>

<unit> contains a symbol, a word or a phrase referring to a unit of measurement in any kind of formal or informal system. [3.6.3. Numbers and Measures]
Modulecore
Attributes
Member of
Contained by
May contain
Example

Here is an example of a unit element holding a unitRef attribute that points to a definition of the unit in the TEI header.

<measure>
 <num>3</num>
 <unit unitRef="#ell">ells</unit>
</measure>
<!-- In the TEI Header: -->
<encodingDesc>
 <unitDecl>
  <unitDef xml:id="ell">
   <label>ell</label>
   <placeName ref="#iceland"/>
   <desc>A unit of measure for cloth, roughly equivalent to 18 inches, or from an adult male’s elbow to the tip of the middle finger.</desc>
  </unitDef>
 </unitDecl>
</encodingDesc>
Example
<measure>
 <num>2</num>
 <unit>kg</unit>
</measure>
Example
<measure type="value">
 <num>3</num>
 <unit type="timeunit="min">minute</unit>
</measure>
Example
<measure type="interval">
 <num atLeast="1.2">1.2</num> to <num atMost="5.6">5.6</num>
 <unit type="velocityunit="km/h">km/h</unit>
</measure>
Example
<p>Light travels at <num value="3E10">3×10^10</num>
 <unit type="rateunit="cm/s">
  <unit type="space">cm</unit> per <unit type="time">second</unit>
 </unit>.</p>
Content model
<content>
 <macroRef key="macro.phraseSeq"/>
</content>
Schema Declaration
element unit
{
   tei_att.global.attributes,
   tei_att.typed.attributes,
   tei_att.measurement.attributes,
   tei_macro.phraseSeq
}