[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

numPr (Numbering Definition Instance Reference)

This element specifies that the current paragraph references a numbering definition instance in the current document.

The presence of this element specifies that the paragraph will inherit the properties specified by the numbering definition in the num element (§2.9.16) at the level specified by the level specified in the lvl element (§2.9.7) and shall have an associated number positioned before the beginning of the text flow in this paragraph. When this element appears as part of the paragraph formatting for a paragraph style, then any numbering level defined using the ilvl element shall be ignored, and the pStyle element (§2.9.25) on the associated abstract numbering definition shall be used instead.

[Example: Consider a paragraph in a document which should be associated with level 4 of a numbering definition with ID 0. Associating the paragraph with this numbering definition would be specified using the following WordprocessingML:

<w:pPr>

<w:numPr>

<w:ilvl w:val="4" />

<w:numId w:val="0" />

</w:numPr>

</w:pPr>

The numPr element specifies that this paragraph shall contain numbering information, and its children specify that the numbering definition for that numbering information shall have a numId of 0 and an ilvl of 4 within that numbering definition. end example]

Parent Elements

pPr2.7.4.2); pPr2.9.24); pPr2.3.1.25); pPr2.7.5.1); pPr2.3.1.26); pPr2.7.7.2)

 

Child Elements

Subclause

ilvl (Numbering Level Reference)

§2.9.3

ins (Inserted Numbering Properties)

§2.13.5.19

numberingChange (Previous Paragraph Numbering Properties)

§2.13.5.30

numId (Numbering Definition Instance Reference)

§2.9.19

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

<complexType name="CT_NumPr">

   <sequence>

   <element name="ilvl" type="CT_DecimalNumber" minOccurs="0"/>

   <element name="numId" type="CT_DecimalNumber" minOccurs="0"/>

   <element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/>

   <element name="ins" type="CT_TrackChange" minOccurs="0"/>

   </sequence>

</complexType>