<ST_RestartNumber>
(Footnote/Endnote Numbering Restart Locations)
This simple type specifies the possible values for when the automatic numbering of footnotes or endnotes shall be restarted.
<w:footnotePr> … <w:numRestart w:val="eachSect" /> … </w:footnotePr>
The @val
attribute value of eachSect
specifies that numbering shall be restarted after each 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 the numbering of footnotes or endnotes shall continue from the previous section in the document. |
|
Specifies that the numbering of footnotes or endnotes shall be restarted to its starting value for each unique page in the document. |
|
Specifies that the numbering of footnotes or endnotes shall be restarted to its starting value for each unique section in the document. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_RestartNumber">
<restriction base="xsd:string">
<enumeration value="continuous"/>
<enumeration value="eachSect"/>
<enumeration value="eachPage"/>
</restriction>
</simpleType>