<ST_FtnPos> (Footnote Positioning Location)
This simple type specifies the position of footnotes in the document.
<w:sectPr>
<w:footnotePr>
<w:pos w:val="beneathText" />
</w:footnotePr>
…
</w:sectPr>
The @val attribute is beneathText, therefore the position of footnotes is specified to be beneath the page's text. ]
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
|---|---|
|
Specifies that footnotes shall be displayed immediately after the last line of text on the page on which the note reference mark appears. |
|
Specifies that all footnotes shall be placed at the end of the current document, regardless of which section they are referenced within. |
|
Specifies that footnotes shall be displayed at the bottom margin of the page on which the note reference mark appears. |
|
Specifies that all footnotes shall be placed at the end of the section in which they are referenced. A footnote which is never referenced is never displayed. |
Referenced By |
|---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_FtnPos">
<restriction base="xsd:string">
<enumeration value="pageBottom"/>
<enumeration value="beneathText"/>
<enumeration value="sectEnd"/>
<enumeration value="docEnd"/>
</restriction>
</simpleType>