Assume, you are looking for changing style in the TOC.
I use this for styling chapter, preface and appendix:
<xsl:attribute-set
name = "toc.line.properties">
<xsl:attribute
name = "font-weight">
<xsl:choose>
<xsl:when
test = "self::d:chapter | self::d:preface | self::d:appendix">
<xsl:text>bold</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>normal</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:attribute-set>
You may want to try for sect1. (you will need to use 'font-size' instead of
'font-weight')
~spr
61Sniper wrote:
>
> Thank you very much. Your Link helped me. Just I have got another problem.
> How can I change the font size of the Title of sect1 Element?
>
--
View this message in context:
http://www.nabble.com/Howto-generate-index-contents-tp15086168p15287818.html
Sent from the docbook apps mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]