<certainty>

<certainty> Indica el grado de certeza o incertidumbre asociado a algun aspecto del marcaje de texto. 21.1.2 Structured Indications of Uncertainty
Módulocertainty — 21 Certainty and Responsibility
Atributos
targetseñala los elementos cuyo marcaje es incierto.
Estado Necesario
Tipo de datos 1–∞ apariciones de

<rng:ref name="data.pointer"/>
data.pointer
separado por espacio en blanco
Valores a series of one or more identifiers (URIs), separated by whitespace
Elizabeth went to <persName xml:id="ESX">Essex</persName>
<certainty target="#ESXlocus="gidegree="0.6"/>
locusindica la posición precisa de la incertidumbre en el marcaje: aplicabilidad del elemento, posición precisa del comienzo y del final de la etiqueta, valor de un atributo específico, etc.
Estado Necesario
Tipo de datos

<rng:ref name="data.enumerated"/>
data.enumerated
Los valores sugeridos incluyen:
gi
(es incierto si el elemento usado realmente se aplica al pasaje...) se desconoce si el elemento usado se aplica realmente al pasaje.
startLoc
(inicio de la localización) la etiqueta-inicio no puede ser localizada correctamente.
endLoc
(final de la localización) la etiqueta-fin no puede ser localizada correctamente.
location
la etiqueta-inicio y la etiqueta-fin no pueden ser localizadas correctamente.
attrName
(el valor dado para el nombre del atributo es incierto.) se desconoce el valor dado para el atributo citado.
transcribedContent
el contenido del elemento puede no ser una transcripción correcta del texto original.
suppliedContent
el contenido del elemento pudo no haber sido proporcionado correctamente por el lector, p.ej. como cuando se trata de los elementos corr y abbrev.
assertedValueproporciona un valor alternativo para el aspecto del marcaje en cuestion, un identificador genérico alternativo, transcripción, o valor de atributo, o de identificador de un elemento anchor (para indicar una posición de comienzo y fin alternativa). Si un assertedValue viene dado, el nivel de confianza especificado por degree se aplica al marcaje alternativo especificado por assertedValue; si no viene dado ninguno, se aplica al marcaje en el texto.
Estado Recomendado
Tipo de datos

<rng:choice>
<rng:ref name="data.pointer"/>
<rng:ref name="data.name"/>
<rng:ref name="data.word"/>
</rng:choice>
data.pointer | data.name | data.word
Valores generic identifier, attribute value, location (e.g. indicated by a reference to an anchor element or to an ptr element), or other appropriate alternative value.
<certainty
  target="#ESX"
  locus="gi"
  assertedValue="place"
  degree="0.2"/>
givenindica las condiciones asumidas en la asignación de un grado de confianza
Estado Recomendado
Tipo de datos 1–∞ apariciones de

<rng:ref name="data.pointer"/>
data.pointer
separado por espacio en blanco
Valores a pointer to a characterization of the conditions which are assumed in the assignment of a degree of confidence.
degreeindica el grado de confianza asignado al aspecto del marcaje llamado por el atributo locus
Estado Opcional
Tipo de datos

<rng:ref name="data.probability"/>
data.probability
Usado por
Puede contener
core: desc gloss
tagdocs: altIdent equiv
Declaración

<rng:element name="certainty">
<rng:ref name="att.global.attributes"/>
<rng:attribute name="target">
 <rng:list>
  <rng:oneOrMore>
   <rng:ref name="data.pointer"/>
  </rng:oneOrMore>
 </rng:list>
</rng:attribute>
<rng:attribute name="locus">
 <rng:choice>
  <rng:value>gi</rng:value>
  <rng:value>startLoc</rng:value>
  <rng:value>endLoc</rng:value>
  <rng:value>location</rng:value>
  <rng:value>attrName</rng:value>
  <rng:value>transcribedContent</rng:value>
  <rng:value>suppliedContent</rng:value>
  <rng:data type="Name"/>
 </rng:choice>
</rng:attribute>
<rng:optional>
 <rng:attribute name="assertedValue">
  <rng:choice>
   <rng:ref name="data.pointer"/>
   <rng:ref name="data.name"/>
   <rng:ref name="data.word"/>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="given">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="data.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="degree">
  <rng:ref name="data.probability"/>
 </rng:attribute>
</rng:optional>
<rng:zeroOrMore>
 <rng:ref name="model.glossLike"/>
</rng:zeroOrMore>
</rng:element>
element certainty
{
   att.global.attributes,
   attribute target { list { data.pointer+ } },
   attribute locus
   {
      "gi"
    | "startLoc"
    | "endLoc"
    | "location"
    | "attrName"
    | "transcribedContent"
    | "suppliedContent"
    | xsd:Name
   },
   attribute assertedValue { data.pointer | data.name | data.word }?,
   attribute given { list { data.pointer+ } }?,
   attribute degree { data.probability }?,
   model.glossLike*
}
Ejemplo

(For discussion of this example, see section 21.1.2 Structured Indications of Uncertainty)

Earnest went to <anchor xml:id="A1"/> old
<persName xml:id="SYB">Saybrook</persName>.

<certainty
  xml:id="c1"
  target="#SYB"
  locus="gi"
  degree="0.6"/>

<certainty
  target="#SYB"
  locus="startLoc"
  given="#c1"
  degree="0.9"/>

<certainty
  xml:id="C-c2"
  target="#SYB"
  locus="gi"
  assertedValue="persName"
  degree="0.4"/>

<certainty
  target="#SYB"
  locus="startLoc"
  given="#C-c2"
  degree="0.5"/>

<certainty
  target="#SYB"
  locus="startLoc"
  assertedValue="#a1"
  given="#c1"
  degree="0.5"/>