<variantEncoding>

<variantEncoding> (variant encoding) declara el método empleado para codificar las variantes del aparato crítico. [12.1.1 The Apparatus Entry]
Módulo textcrit — Critical Apparatus
Atributos
method⚓︎ indica el método seguido para codificar el aparato crítico de las variantes.
Estado Necesario
Tipo de datos teidata.enumerated
Los valores admitidos son:
location-referenced
el aparato emplea números de línea u otro esquema canónico de referencia referidos en el texto base.
double-end-point
el aparato indica las localizaciones exactas del principio y de la conclusión de cada lema concerniente a un texto base.
parallel-segmentation
las lecturas alternativs de un pasaje se dan paralelamente en el texto; no es necesaria ninguna noción sobre un texto base necesaria.
location⚓︎ indica si el aparato aparece al interno o al externo del texto.
Estado Necesario
Tipo de datos teidata.enumerated
Schematron

<sch:rule context="tei:variantEncoding">
<sch:report test="@location eq 'external' and @method eq 'parallel-segmentation'"> The @location value "external" is inconsistent with the
parallel-segmentation method of apparatus markup.</sch:report>
</sch:rule>
Los valores admitidos son:
internal
el aparato aparece dentro del texto.
external
el aparato aparece fuera del texto base.
Miembro de
Contenido en
header: encodingDesc
Puede contener Elemento vacío
Ejemplo
<variantEncoding method="location-referenced"
 location="external"/>
Content model
<content>
 <empty/>
</content>
Declaración
<rng:element name="variantEncoding">
 <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:attribute name="method">
  <rng:choice>
   <rng:value>location-referenced</rng:value>
   <rng:value>double-end-point</rng:value>
   <rng:value>parallel-segmentation</rng:value>
  </rng:choice>
 </rng:attribute>
 <rng:attribute name="location">
  <rng:choice>
   <rng:value>internal</rng:value>
   <rng:value>external</rng:value>
  </rng:choice>
 </rng:attribute>
 <rng:empty/>
</rng:element>
element variantEncoding
{
   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,
   attribute method
   {
      "location-referenced" | "double-end-point" | "parallel-segmentation"
   },
   attribute location { "internal" | "external" },
   empty
}