RE: [docbook-apps] Page Break after ToC in <atricle>

From
Mauritz Jeanson <>
Date
2008-05-19T16:10:58+00:00
ID
000101c8b9ca$e7fd03f0$71ea1a51@D7MZ171J
Thread
RE: [docbook-apps] Page Break after ToC in <atricle>
> -----Original Message-----
> From: Andrew McFarland 
> 
> I want to add a page break after the ToC in the PDF generated from an
> <article/>. I've spent a couple of hours digging around in the docs
> and the XSLT, but no luck. Can anyone help?


Customize the component.toc.separator template (see autotoc.xsl):

<xsl:template name="component.toc.separator"> 
   <fo:block break-after="page"/>
</xsl:template>

/MJ