<precision>

<precision> indicates the numerical accuracy or precision associated with some aspect of the text markup. [21.2 Indications of Precision]
Module certainty — Certainty, Precision, and Responsibility
Attributes
calendar⚓︎ indicates one or more systems or calendars to which the date represented by the content of this element belongs.
Deprecated This feature will be withdrawn after 2024-11-11
Status Optional
Datatype 1–∞ occurrences of teidata.pointer separated by whitespace
Schematron

<sch:rule context="tei:*[@calendar]">
<sch:assert test="string-length( normalize-space(.) ) gt 0"> @calendar indicates one or more
systems or calendars to which the date represented by the content of this element belongs,
but this <sch:name/> element has no textual content.</sch:assert>
</sch:rule>
precision⚓︎ characterizes the precision of the element or attribute pointed to by the precision element.
Status Optional
Datatype teidata.certainty
stdDeviation⚓︎ supplies a standard deviation associated with the value in question
Status Optional
Datatype teidata.numeric
Member of
Contained by
analysis: cl interp m phr s span w
figures: cell figure table
linking: ab join seg standOff
nets: graph
spoken: u writing
tagdocs: eg valDesc
textcrit: lem rdg wit witDetail
verse: metSym rhyme
May contain
core: desc
Example
<date xml:id="date001notBefore="0014"
 notAfter="0064">
Within about 50
years of the death of Augustus</date>
<precision target="#date001"
 match="@notBeforeprecision="high"/>

<precision target="#date001"
 match="@notAfterprecision="low"/>
Example
<date notBefore="1632notAfter="1642">Not more than ten years before the start of the Civil War
<precision match="@notBefore"
  precision="low"/>

 <precision match="@notAfter"
  precision="high"/>

</date>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <classRef key="model.descLike"/>
  <classRef key="model.certLike"/>
 </alternate>
</content>
Schema Declaration
<rng:element name="precision">
 <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.scoping.attributes"/>
 <rng:ref name="att.ranging.attributes"/>
 <rng:ref name="att.datable.attributes"/>
 <rng:ref name="att.datable.w3c.attributes"/>
 <rng:ref name="att.datable.iso.attributes"/>
 <rng:ref name="att.datable.custom.attributes"/>
 <rng:optional>
  <rng:attribute name="calendar">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.pointer"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="precision">
   <rng:ref name="teidata.certainty"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="stdDeviation">
   <rng:ref name="teidata.numeric"/>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="model.descLike"/>
   <rng:ref name="model.certLike"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element precision
{
   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.scoping.attributes,
   att.ranging.attributes,
   att.datable.attributes,
   att.datable.w3c.attributes,
   att.datable.iso.attributes,
   att.datable.custom.attributes,
   attribute calendar { list { teidata.pointer+ } }?,
   attribute precision { teidata.certainty }?,
   attribute stdDeviation { teidata.numeric }?,
   ( model.descLike | model.certLike )*
}