<gap>

<gap> (gap) indicada un punto donde algún material ha sido omitido en una transcripción, bien por criterios de edición descritos en el cabezado TEI, bien como parte de una práctica habitual, o bien porqué el material es ilegible o incomprensible. [3.5.3 Additions, Deletions, and Omissions]
Módulo core — Elements Available in All TEI Documents
Atributos
reason⚓︎ (reason) declara la causa de la omisión
Estado Opcional
Tipo de datos 1–∞ apariciones de teidata.enumerated separado por espacio en blanco
Los valores sugeridos incluyen:
cancelled
(cancelado)
deleted
(deleted)
editorial
(editorial) for features omitted from transcription due to editorial policy
illegible
(ilegible)
inaudible
(inaudible)
irrelevant
(irrelevante)
sampling
(ejemplificación)
agent⚓︎ (agent) En el caso de texto omitido a causa de algún daño, identifica (si es posible) la causa de tal daño.
Estado Opcional
Tipo de datos teidata.enumerated
Posibles valores:
rubbing
(rubbing) daños resultantes del frotamiento de los bordes de la hoja
mildew
(mildew) daños resultantes de la acción del moho en la superficie de la hoja
smoke
(smoke) daños provocados porl humo
Miembro de
Contenido en
analysis: cl m phr s span w
figures: cell figure table
linking: ab seg
nets: graph
spoken: u writing
tagdocs: eg valDesc
textcrit: lem rdg wit witDetail
verse: metSym rhyme
Puede contener
core: desc
Nota

El gap, unclear, y los elementos de la etiqueta base pueden funcionar con los elementos de <daño> y elementos de <supresión>, disponibles al usar el conjunto de etiquetas adicional para la transcripción de las fuentes primarias. Ver la sección 11.3.3.2 Use of the gap, del, damage, unclear, and supplied Elements in Combination para la discusión cuyo el elemento es apropiado para qué circunstancia.

Ejemplo
<gap quantity="4unit="chars"
 reason="illegible"/>
Ejemplo
<gap quantity="1unit="essay"
 reason="sampling"/>
Ejemplo
<del>
 <gap atLeast="4atMost="8unit="chars"
  reason="illegible"/>

</del>
Ejemplo
<gap extent="several linesreason="lost"/>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <classRef key="model.descLike"/>
  <classRef key="model.certLike"/>
 </alternate>
</content>
Declaración
<rng:element name="gap">
 <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.timed.attributes"/>
 <rng:ref name="att.duration.w3c.attributes"/>
 <rng:ref name="att.duration.iso.attributes"/>
 <rng:ref name="att.editLike.attributes"/>
 <rng:ref name="att.dimensions.attributes"/>
 <rng:ref name="att.ranging.attributes"/>
 <rng:optional>
  <rng:attribute name="reason">
   <rng:list>
    <rng:oneOrMore>
     <rng:choice>
      <rng:value>cancelled</rng:value>
      <rng:value>deleted</rng:value>
      <rng:value>editorial</rng:value>
      <rng:value>illegible</rng:value>
      <rng:value>inaudible</rng:value>
      <rng:value>irrelevant</rng:value>
      <rng:value>sampling</rng:value>
      <rng:ref name="teidata.enumerated"/>
     </rng:choice>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="agent">
   <rng:ref name="teidata.enumerated"/>
  </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 gap
{
   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.timed.attributes,
   att.duration.w3c.attributes,
   att.duration.iso.attributes,
   att.editLike.attributes,
   att.dimensions.attributes,
   att.ranging.attributes,
   attribute reason
   {
      list
      {
         (
            "cancelled"
          | "deleted"
          | "editorial"
          | "illegible"
          | "inaudible"
          | "irrelevant"
          | "sampling"
          | teidata.enumerated
         )+
      }
   }?,
   attribute agent { teidata.enumerated }?,
   ( model.descLike | model.certLike )*
}