<equiv>

<equiv> (equivalente) especifica un componente que se considera equivalente al elemento padre, o por co-referencias o por algún enlace externo. [3.4.1 Terms and Glosses 22.4.1 Description of Components]
Módulo tagdocs — Documentation Elements
Atributos
name⚓︎ especifica el concepto subyacente cuyo padre es una representación.
Estado Opcional
Tipo de datos teidata.name
uri⚓︎ (identificador de recurso uniforme) referencia el concepto subyacente del cual padre es una representación mediante algún identificador externo
Estado Opcional
Tipo de datos teidata.pointer
filter⚓︎ referencia un guión externo que contiene un método para transformar ejemplos de este elemento a TEI canónico.
Estado Opcional
Tipo de datos teidata.pointer
Miembro de
Contenido en
Puede contener Elemento vacío
Nota

The mimeType attribute should be used to supply the MIME media type of the filter script specified by the filter attribute.

Ejemplo

The following example declares that the <bo> element is conceptually equivalent to the markup construct <hi rend='bold'>, and that an external definition of this concept is available from the URI indicated

<elementSpec ident="himode="change">
 <equiv name="BOLD"/>
 <desc>bold typography</desc>
 <attList>
  <attDef ident="rendmode="change">
   <valList>
    <valItem ident="bold"/>
   </valList>
  </attDef>
 </attList>
</elementSpec>
<elementSpec ident="bomode="add">
 <equiv name="BOLD"
  uri="http://www.example.com/typesetting/bold"/>

</elementSpec>
Content model
<content>
 <empty/>
</content>
Declaración
<rng:element name="equiv">
 <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.internetMedia.attributes"/>
 <rng:ref name="att.predicate.attributes"/>
 <rng:optional>
  <rng:attribute name="name">
   <rng:ref name="teidata.name"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="uri">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="filter">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:empty/>
</rng:element>
element equiv
{
   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.internetMedia.attributes,
   att.predicate.attributes,
   attribute name { teidata.name }?,
   attribute uri { teidata.pointer }?,
   attribute filter { teidata.pointer }?,
   empty
}