[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
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.
[Example: Consider a WordprocessingML document where the numbering for its endnotes shall be restarted after each section shall be restarted after each page. This setting is represented by the following WordprocessingML:
<w:footnotePr>
…
<w:numRestart w:val="eachSect" />
…
</w:footnotePr>
The val attribute value of eachSect specifies that numbering shall be restarted after each 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 |
continuous (Continue Numbering From Previous Section) |
Specifies that the numbering of footnotes or endnotes shall continue from the previous section in the document. |
eachPage (Restart Numbering On Each Page) |
Specifies that the numbering of footnotes or endnotes shall be restarted to its starting value for each unique page in the document. |
eachSect (Restart Numbering For Each Section) |
Specifies that the numbering of footnotes or endnotes shall be restarted to its starting value for each unique section in the document. |
Referenced By |
numRestart@val (§2.11.19) |
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>