<m>

<m> (語素) 表示文法上的語素。 17.1 Linguistic Segment Categories
組件 analysis — 17 Simple Analytic Mechanisms
除全域屬性以外 att.segLike (@function, @part) (att.metrical (@met, @real, @rhyme)) att.typed (@type, @subtype)
baseForm 指出該語素的基本形式。
狀態 非必備的
資料類型

<rng:ref name="data.word"/>
data.word
a string of characters representing the spelling of the morpheme's base form.
屬於
可包含
宣告

<rng:element name="m">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.segLike.attributes"/>
 <rng:ref name="att.metrical.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:optional>
  <rng:attribute name="baseForm">
   <rng:ref name="data.word"/>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.gLike"/>
   <rng:ref name="seg"/>
   <rng:ref name="m"/>
   <rng:ref name="c"/>
   <rng:ref name="model.global"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element m
{
   att.global.attributes,
   att.segLike.attributes,
   att.metrical.attributes,
   att.typed.attributes,
   attribute baseForm { data.word }?,
   ( text | model.gLike | seg | m | c | model.global )*
}
例子
<w type="形容詞">
 <w type="名詞">
  <m type="字首" baseForm="con">com</m>
  <m type="字根">fort</m>
 </w>
 <m type="字尾">able</m>
</w>