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