<ST_EdnPos>
(Endnote Positioning Location)
This simple type specifies the possible positions of endnotes in a document.
<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. ]
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 all endnotes shall be placed at the end of the current document, regardless of which section they are referenced within. |
|
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 |
---|
|
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>