<ST_FtnPos> (Footnote Positioning Location)

This simple type specifies the position of footnotes in the document.

example:
<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

<beneathText> (Footnotes Positioned Beneath Text)

Specifies that footnotes shall be displayed immediately after the last line of text on the page on which the note reference mark appears.

<docEnd> (Footnotes Positioned At End of Document)

Specifies that all footnotes shall be placed at the end of the current document, regardless of which section they are referenced within.

<pageBottom> (Footnotes Positioned at Page Bottom)

Specifies that footnotes shall be displayed at the bottom margin of the page on which the note reference mark appears.

<sectEnd> (Footnotes Positioned At End of Section)

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

<pos@val>2.11.21)

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>