> Was wonder how to keep the contents of a table-cell from breaking
> across pages when the table cell contains several paragraphs blocks.

Try this:

            <fo:table-row keep-together.within-column="always">
            ...

This will prevent the content of this row from getting broken apart at page
breaks.
If it does not fit onto the rest of the page, the complete row content will
start on the next page.
Of course, if the content is too large to fit onto a single page it will
then be broken nevertheless.

As the documentation says, this only works in table-row elements at the
moment:
http://xml.apache.org/fop/compliance.html#fo-property-keep-together

If (for some reason) you want to apply this only to a single cell instead of
a complete row,
use a nested table here with this setting aplied to it.

Roland



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to