<f>

<f> 素性値定義を示す.すなわち,素性名とその様々な値を示す. 18.2 Elementary Feature Structures and the Binary Feature Value
モジュール iso-fs — 18 Feature Structures
グローバル属性の他
name 当該素性の名前を示す.
状態 必須
データ型

<rng:ref name="data.name"/>
data.name
Any name.
fVal (feature value) 素性値を表す要素を参照する.
状態 任意
データ型

<rng:ref name="data.pointer"/>
data.pointer
the identifier of an element representing a feature value
解説
当該属性の値は,参照された要素内容とされる.
当該モジュールを使用するもの
下位
宣言

<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:choice>
   <rng:text/>
   <rng:ref name="model.gLike"/>
   <rng:ref name="model.featureVal"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element f
{
   att.global.attributes,
   attribute name { data.name },
   attribute fVal { data.pointer }?,
   ( text | model.gLike | model.featureVal )*
}
Schematron

<s:rule context="tei:fVal">
<s:assert test="not(tei:* and text)"> A feature value cannot
contain both text and element content</s:assert></s:rule>
<s:rule context="tei:fVal">
<s:report test="count(tei:*)>1"> A feature value can contain
only one child element</s:report></s:rule>
<f name="gender">
 <symbol value="feminine"/>
</f>
解説
参照先の要素が空要素の場合,属性fValが示す対象となる値 が用意されていなければならない.