<f>

<f> (자질) feature value specification, 즉, 이름과 몇 가지 다른 유형의 값을 연결시킨다. [18.2 Elementary Feature Structures and the Binary Feature Value]
모듈 iso-fs — Feature Structures
속성
name⚓︎ 자질에 대한 이름을 제공한다.
상태 필수적
자료 유형 teidata.name
fVal⚓︎ (자질 값) 자질의 값을 표시할 수 있는 요소를 참조한다.
상태 수의적
자료 유형 teidata.pointer
에 의해 포함된
iso-fs: bicond cond fLib fs if
포함할 수 있다
주석

The content of f may be textual, with the assumption that the data type of the feature value is determined by the schema—this is the approach used in many language-technology-oriented projects and recommendations.

<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 )
}