On 12/18/06, Keith Fahlgren <
keith@audiobeta.com> wrote:
> On 12/18/06, Paul Moloney <
paul_moloney@hotmail.com> wrote:
> > Changing part title styles isn't mentioned on
> >
http://sagehill.net/docbookxsl/TitleFontSizes.htm; can anyone point me in
> > direction of any other info out there - for example, is there a suitable
> > attribute set which can be configured?
>
> part.titlepage.recto.style and part.titlepage.verso.style are two
> attribute-sets that can be configured to change the part title font
> size.
I should add that the font-size (among other things) is directly
specified in the fo:block in fo/titlepage.templates.xsl:
<xsl:template match="title" mode="part.titlepage.recto.auto.mode">
<fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format"
xsl:use-attribute-sets="part.titlepage.recto.style"
text-align="center" font-size="24.8832pt" space-before="18.6624pt"
font-weight="bold" font-family="{$title.fontset}">
<xsl:call-template name="division.title">
...
so you'll want to remove the font-size declaration there if you plan
on setting it in the attribute-set.
HTH,
Keith