<endnotePr> (Section-Wide Endnote Properties)

This element specifies the endnote properties for the current section. Each of these properties are an override of the document-wide endnote properties (§2.11.4) and are stored as a child element within the <endnotePr> element.

If this element is omitted for a given section, then that section shall use the endnote properties defined at the document-wide level.

example:
<w:sectPr>
  <w:endnotePr>
    <w:numFmt w:val="lowerRoman" />
  </w:endnotePr>
</w:sectPr><w:sectPr></w:sectPr><w:sectPr></w:sectPr>

This assumes that the document-wide endnote settings are specified to use the Chicago Manual of Style format, as follows:

<w:settings>
  <w:endnotePr>
    <w:numFmt w:val="chicago" />
  </w:endnotePr>
</w:settings>

The resulting document would override the endnote numbering format for the first section to lowerRoman, but would use the chicago endnote numbering format for section three (and would also use it for section two if that section had endnotes. ]

Parent Elements

<sectPr>2.6.17); <sectPr>2.6.18); <sectPr>2.6.19)

Child Elements

Subclause

<numFmt> (Endnote Numbering Format)

§2.11.18

<numRestart> (Footnote and Endnote Numbering Restart Location)

§2.11.19

<numStart> (Footnote and Endnote Numbering Starting Value)

§2.11.20

<pos> (Endnote Placement)

§2.11.22

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

<complexType name="CT_EdnProps">
	<sequence>
	<element name="pos" type="CT_EdnPos" minOccurs="0"/>
	<element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
	<group ref="EG_FtnEdnNumProps" minOccurs="0"/>
	</sequence>
</complexType>