Re: conditional page-break table based on row number?

You can't do this:

<fo:table-row {$breakvar} keep-together="always">

XSLT files have to be well formed XML.

You can do

<fo:table-row keep-together="always">
 <xsl:if test="position() mod 2 = 1">
 <xsl:attribute name="break-before">page</xsl:attribute>
 </xsl:if>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Received on Friday, 8 October 2004 01:00:11 UTC