<f>

<f> (Rasgo) representa una feature value specification (especificación de valor de rasgo), es decir, la asociación de un nombre con un valor de cualquier de los diferentes tipos. 18.2 Elementary Feature Structures and the Binary Feature Value
Módulo iso-fs — 18 Feature Structures
Además de los atributos globales
name proporciona un nombre para un rasgo.
Estado Necesario
Tipo de datos

<rng:ref name="data.name"/>
data.name
Valores Any name.
fVal (valor del rasgo) indica cualquier elemento que puede ser usado para representar el valor de un rasgo.
Estado Opcional
Tipo de datos

<rng:ref name="data.pointer"/>
data.pointer
Valores the identifier of an element representing a feature value
Usado por
Puede contener
Declaración

<rng:element name="f">
 <rng:ref name="att.global.attributes"/>
 <rng:attribute name="name">
  <rng:ref name="data.name"/>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="fVal">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:ref name="model.featureVal"/>
 </rng:zeroOrMore>
</rng:element>
element f
{
   att.global.attributes,
   attribute name { data.name },
   attribute fVal { data.pointer }?,
   model.featureVal*
}
Ejemplo
<f name="gender">
 <symbol value="feminine"/>
</f>