[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
ST_ChapterSep (Chapter Separator Types)
This simple type specifies the character which shall be used to separate the chapter number from the page number for page numbers in a given section, when chapter numbers are being displayed.
[Example: Consider a section in a document in which the chapter shall be separated from the page number using a colon character. This constraint would be specified using the following WordprocessingML:
<w:pgNumType w:chapSep="colon" chapStyle="1" />
The chapSep attribute declares that the chapter and page number shall be separated by a colon (e.g. 1:1 for chapter one, page one). 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 |
colon (Colon Chapter Separator) |
Specifies that a colon character shall be used to separate the chapter number from the page number when page numbers are displayed.
[Example: 1:1 for page one, section one. end example] |
emDash (Em Dash Chapter Separator) |
Specifies that an em dash character shall be used to separate the chapter number from the page number when page numbers are displayed.
[Example: 1—1 for page one, section one. end example] |
enDash (En Dash Chapter Separator) |
Specifies that an en dash character shall be used to separate the chapter number from the page number when page numbers are displayed.
[Example: 1–1 for page one, section one. end example] |
hyphen (Hyphen Chapter Separator) |
Specifies that a non-breaking hyphen character shall be used to separate the chapter number from the page number when page numbers are displayed.
[Example: 1‑1 for page one, section one. end example] |
period (Period Chapter Separator) |
Specifies that a period character shall be used to separate the chapter number from the page number when page numbers are displayed.
[Example: 1.1 for page one, section one. end example] |
Referenced By |
caption@sep (§2.15.1.16); pgNumType@chapSep (§2.6.12) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_ChapterSep">
<restriction base="xsd:string">
<enumeration value="hyphen"/>
<enumeration value="period"/>
<enumeration value="colon"/>
<enumeration value="emDash"/>
<enumeration value="enDash"/>
</restriction>
</simpleType>