<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.
<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). ]
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 a colon character shall be used to separate the chapter number from the page number when page numbers are displayed. |
|
Specifies that an em dash character shall be used to separate the chapter number from the page number when page numbers are displayed. |
|
Specifies that an en dash character shall be used to separate the chapter number from the page number when page numbers are displayed. |
|
Specifies that a non-breaking hyphen character shall be used to separate the chapter number from the page number when page numbers are displayed. |
|
Specifies that a period character shall be used to separate the chapter number from the page number when page numbers are displayed. |
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>