</refmeta>
<refnamediv>
<refname>toc.line.properties</refname>
-<refpurpose>Properties for lines in ToC and LoTs</refpurpose>
+<refpurpose>Properties for lines in ToCs and LoTs</refpurpose>
</refnamediv>
<refsynopsisdiv>
<para>Properties which are applied to every line in ToC (or LoT). You can
modify them in order to change appearance of all, or some lines. For
-example in order to make lines for chapters in bold specify the
-following in your customization layer.</para>
+example, in order to make lines for chapters bold, specify the
+following in your customization layer:</para>
<programlisting><xsl:attribute-set name="toc.line.properties">
<xsl:attribute name="font-weight">
- <xsl:when test="self::chapter | self::preface | self::appendix">bold</xsl:when>
+ <xsl:choose>
+ <xsl:when test="self::chapter">bold</xsl:when>
<xsl:otherwise>normal</xsl:otherwise>
+ </xsl:choose>
</xsl:attribute>
</xsl:attribute-set></programlisting>