[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

em (Emphasis Mark)

This element specifies the emphasis mark which shall be displayed for each non-space character in this run. An emphasis mark is an additional character that is rendered above or below the main character glyph as specified by the contents of the val attribute.

If this element is not present, the default value is to leave the formatting applied at previous level in the style hierarchy. If this element is never applied in the style hierarchy, then no emphasis mark shall be added to each character in the contents of this run.

[Example: Consider a run of text which shall have a dot underneath each character as an emphasis mark. This constraint is specified using the following WordprocessingML:

<w:rPr>
<w:em w:val="dot"/>
</w:rPr>

This run explicitly declares that the emphasis mark type is dot, so the contents of this run will have a dot emphasis mark above each character. end example]

Parent Elements

rPr2.7.8.1); rPr2.3.1.29); rPr2.5.2.26); rPr2.3.2.25); rPr2.3.2.26); rPr2.7.4.4); rPr2.3.1.30); rPr2.9.26); rPr2.5.2.27); rPr2.7.5.2)

 

Attributes

Description

val (Emphasis Mark Type)

Specifies the emphasis mark type used for each character in this run.

 

[Example: Consider a run of text which shall have a dot underneath each character as an emphasis mark. This constraint is specified using the following WordprocessingML:

 

<w:rPr>
<w:em w:val="dot"/>
</w:rPr>

 

This run explicitly declares that the em type is dot, so the contents of this run will have a dot emphasis mark beneath each character. end example]

 

The possible values for this attribute are defined by the ST_Em simple type2.18.28).

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

<complexType name="CT_Em">

   <attribute name="val" type="ST_Em" use="required"/>

</complexType>