<variantEncoding>

<variantEncoding> (variant encoding) indica il metodo adottato per codificare varianti critiche del testo. [12.1.1 The Apparatus Entry]
Modulo textcrit — Critical Apparatus
Attributi
method⚓︎ indica il metodo adottato per codificare l'apparato di varianti.
Stato Richiesto
Tipo di dati teidata.enumerated
I valori legali sono:
location-referenced
l'apparato utilizza righe numerate o un altro schema di riferimento canonico indicato in un testo base.
double-end-point
l'apparato indica la localizzazione precisa dell'inizio e delle fine di ciascun lemma relativo a un testo base.
parallel-segmentation
letture alternative di un brano sono fornite in parallelo nel testo; non è necessaria alcune nozione di un testo base.
location⚓︎ indica se l'apparato compare all'interno del testo, o esternamente.
Stato Richiesto
Tipo di dati 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>
I valori legali sono:
internal
l'apparato compare all'interno del testo.
external
l'apparato compare esternamente al testo.
Membro del
Contenuto in
header: encodingDesc
Può contenere Elemento vuoto
Esempio
<variantEncoding method="location-referenced"
 location="external"/>
Content model
<content>
 <empty/>
</content>
Dichiarazione
<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
}