Try the :fo:table-header There are other examples in the FOP package.. However, if you want running headers such as <fo:retrieve-marker>, you cannot use this... you must put the <fo:retrieve-marker> in xsl:region-before.....
Does that help?
Pete Solberg
<xsl:template match="paragraphs">
<fo:table table-layout="fixed" width="100%">
<fo:table-column column-width="proportional-column-width(1)"/>
<fo:table-header>
<fo:table-row>
<fo:table-cell>
<xsl:apply-templates select="heading"/>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<xsl:apply-templates select="paragraph"/>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</xsl:template>
>From: Matthias Brunner <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: keep-together / blind tables
>Date: Mon, 3 Mar 2003 19:24:35 +0100
>
>Hello,
>
>I know this is a FAQ but I did not find anything appropriate to my
>specific problem.
>I have paragraphs with a heading and, of course, I do not want the
>heading to be left alone on one page with the paragraphs being on
>the next one.
>
>---excerpt---
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>---excerpt---
>
>
>keep-with-next works, the heading is never left alone.
>But even if a paragraph is half a page in size it is not seperated
>any more thus leaving ugly blank spots on the pages. (strange ASCII
>art example attached below :)
>What can I do to allow the separation of this paragraph?
>
>
>Thanks in advance,
>Matthias
>
>
>Example:
>p1
>----
>
>
>content
>content
>content
>
>EMPTY
>EMPTY
>EMPTY
>EMPTY
>---
>p2
>----
>
>
>content
>content
>content
>content
>content
>content
>content
>
>----
>
>
>
>INSTEAD OF:
>p1
>----
>
>
>content
>content
>content
>
>
>
>content
>content-
>---
>p2
>----
>content
>content
>content
>content
>content
>
>EMPTY
>EMPTY
>EMPTY
>EMPTY
>----
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
The new
MSN 8: smart spam protection and 2 months FREE*
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]