[xsl] XSL-FO Pagination

Subject: [xsl] XSL-FO Pagination
From: "Joan Alvarez" <ALVAREJO@xxxxxxxxx>
Date: Mon, 31 Oct 2005 09:33:10 -0500
Hi,

Would anyone be able to provide a hint as to why, using the following code,
the page number would not be displayed on my Table of Contents page?

<xsl:for-each select="website/page/section">
     <fo:block text-align="left" space-after="24pt"><xsl:value-of
      select="title"/>
    <fo:basic-link internal-destination="{position()}">
      <xsl:value-of select="title"/>
   </fo:basic-link>
   <fo:inline font-weight="normal" font-size="10pt">
     <fo:leader leader-pattern="dots"/>Page
     <fo:page-number-citation ref-id="{position()}"/>
   </fo:inline>
 </fo:block>
 </xsl:for-each>

Also, I am using  break-before="page"  in my code and it works, but I need it
to start the process on the second, not the first of a group of pages.  Once
you have this
instruction in your code, if there is no way to have it commence on the second
page, is there a way to over-ride it for the first page only.  I have tried
break-after="page" and
it does not work either and provides an unwanted page in another area of the
output.

Any assistance would be greatly appreciated.

Joan Alvarez <alvarejo@xxxxxxxxx>

Current Thread