[Table of Contents] [docx version]

Shared MLs Reference Material - Math

alnScr (Align Scripts)

This element specifies the alignment of scripts in the subscript/superscript function. When on, subscripts and superscripts are aligned to each other. When off, they are kerned to the shape of the base. If this element is omitted, scripts are not aligned. [Example: Example (OFF): ; Example (ON): .

The XML representation of the second example above is:

<m:sSubSup>
<m:sSubSupPr>
<m:alnScr   m:val="on"/>
</m:sSubSupPr>

<m:e>
<m:r>
<m:t>f</m:t>
</m:r>
</m:e>

<m:sub>
<m:r>
<m:rPr>
<m:scr m:val="roman"/>
<m:sty m:val="p"/>
</m:rPr>
<m:t>2</m:t>
</m:r>
</m:sub>

<m:sup>
<m:r>
<m:rPr>
<m:scr m:val="roman"/>
<m:sty m:val="p"/>
</m:rPr>
<m:t>3</m:t>
</m:r>
</m:sup>
</m:sSubSup>

end example]

Parent Elements

sSubSupPr7.1.2.104)

 

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 type7.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>