<footnotePr>
(Section-Wide Footnote Properties)
This element specifies the footnote properties for the current section. Each of these properties are an override of the document-wide footnote properties (§2.11.11) and are stored as a child element within the <footnotePr>
element.
If this element is omitted for a given section, then that section shall use the footnote properties defined at the document-wide level.
<w:sectPr> <w:footnotePr> <w:pos w:val="beneathText" /> </w:footnotePr> </w:sectPr> … <w:sectPr> … </w:sectPr> … <w:sectPr> … </w:sectPr>
This assumes that the document-wide footnote settings are specified as the default positioning at the bottom of the page by omitting the <pos>
element (§2.11.21), as follows:
<w:settings> <w:footnotePr> … </w:footnotePr> </w:settings>
The resulting document would override the footnote positioning for the first section to beneathText
, but would use the pageBottom
footnote positioning for section three (and would also use it for section two if that section had footnotes. ]
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_FtnProps">
<sequence>
<element name="pos" type="CT_FtnPos" minOccurs="0"/>
<element name="numFmt" type="CT_NumFmt" minOccurs="0"/>
<group ref="EG_FtnEdnNumProps" minOccurs="0"/>
</sequence>
</complexType>