<f>

<f> (feature) 素性値定義を示す。すなわち、素性名とその様々な値を示す。 [18.2 Elementary Feature Structures and the Binary Feature Value]
モジュール iso-fs — Feature Structures
属性
name⚓︎ 当該素性の名前を示す。
状態 必須
データ型 teidata.name
fVal⚓︎ (feature value) 素性値を表す要素を参照する。
状態 任意
データ型 teidata.pointer
解説

当該属性の値は、参照された要素内容とされる。

上位
iso-fs: bicond cond fLib fs if
下位
解説

参照先の要素が空要素の場合、属性fValが示す対象となる値 が用意されていなければならない。

<f name="gender">
 <symbol value="feminine"/>
</f>
<fs>
 <f name="voice">active</f>
 <f name="tense">SimPre</f>
</fs>
Content model
<content>
 <alternate minOccurs="1maxOccurs="1">
  <textNode/>
  <classRef key="model.featureVal"/>
 </alternate>
</content>
宣言
<rng:element name="f">
 <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.datcat.attributes"/>
 <rng:attribute name="name">
  <rng:ref name="teidata.name"/>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="fVal">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:choice>
  <rng:text/>
  <rng:ref name="model.featureVal"/>
 </rng:choice>
</rng:element>
element f
{
   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.datcat.attributes,
   attribute name { teidata.name },
   attribute fVal { teidata.pointer }?,
   ( text | model.featureVal )
}