<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:
<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

<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.

<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.

<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.

<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.

<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.

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>