- From: David Carlisle <davidc@nag.co.uk>
- Date: Fri, 8 Oct 2004 01:59:46 +0100
- To: rneilands@pulsemining.com.au
- CC: mooney@dogbert.cc.ndsu.NoDak.edu, www-xsl-fo@w3.org
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