<m>

<m> (morpheme) represents a grammatical morpheme. 17.1 Linguistic Segment Categories
Moduleanalysis — 17 Simple Analytic Mechanisms
Attributes att.segLike (@function, @part) (att.metrical (@met, @real, @rhyme)) att.typed (@type, @subtype)
baseFormidentifies the morpheme's base form.
Status Optional
Datatype

<rng:ref name="data.word"/>
data.word
Values a string of characters representing the spelling of the morpheme's base form.
Used by
May contain
Declaration

<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="model.segLike"/>
  <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 | model.segLike | model.global )*
}
Example
<w type="adjective">
 <w type="noun">
  <m type="prefixbaseForm="con">com</m>
  <m type="root">fort</m>
 </w>
 <m type="suffix">able</m>
</w>
Note
The type attribute may be used to indicate the type of morpheme, taking values such as clitic, prefix, stem, etc. as appropriate.