[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_EdnPos (Endnote Positioning Location)

This simple type specifies the possible positions of endnotes in a document.

[Example: Consider a document in which endnotes shall be positioned at the end of the section. The section properties for this section shall be declared as follows:

<w:settings>

<w:endnotePr>

<w:pos w:val="endSect" />

</w:endnotePr>

</w:settings>

The val attribute is endSect, therefore the position of endnotes is specified to be at the end of the section. end example]

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

docEnd (Endnotes Positioned at End of Document)

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

sectEnd (Endnotes Positioned at End of Section)

Specifies that endnotes shall be placed at the end of the section in which they are referenced.

 

An endnote which is never referenced is never displayed.

 

Referenced By

pos@val2.11.22)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_EdnPos">

   <restriction base="xsd:string">

   <enumeration value="sectEnd"/>

   <enumeration value="docEnd"/>

   </restriction>

</simpleType>