<nor> (Normal Text)

This element specifies that the run is normal text, i.e., math italics and math spacing are not applied. In a normal text run, no characters will trigger reformatting of a linear expression into a two-dimensional expression.
example: : The example below illustrates three runs of normal text, along with the XML representation of the equation:
<m:r>
  <m:rPr>
    <m:nor/>
  </m:rPr>
  <m:t>rate</m:t>
</m:r>
<m:r>
  <m:t>=</m:t>
</m:r>
<m:f>
  <m:num>
    <m:r>
      <m:rPr>
        <m:nor/>
      </m:rPr>
      <m:t>distance</m:t>
    </m:r>
  </m:num>
  <m:den>
    <m:r>
      <m:rPr>
        <m:nor/>
      </m:rPr>
      <m:t>time</m:t>
    </m:r>
  </m:den>
</m:f>

Parent Elements

<rPr>7.1.2.91)

Attributes

Description

<val> (value)

Specifies a binary value for the property defined by the parent XML element.

A value of on specifies that the property shall be explicitly applied. This is the default value for this attribute, and is implied when the parent element is present.

A value of off specifies that the property shall be explicitly turned off. This is implied when the parent element is not present.

The possible values for this attribute are defined by the ST_OnOff simple type (§7.1.3.9).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_OnOff">
	<attribute name="val" type="ST_OnOff"/>
</complexType>