<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.
<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. ]
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
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>