Do you mean soft page break as described here?
http://www.sagehill.net/docbookxsl/PageBreaking.html

XSL-FO does not know the term "soft page break". However, you can
emulate this with this pattern:

<fo:block-container width="100%" height="3cm">
  <fo:block/>
</fo:block-container>
<fo:block space-before="-3cm">
[..]

The block-container is non-breakable so the FO processor cannot break
inside those 3cm. The following FO element (a block in the example) is
given a negative space-before so it is positioned at the same place as
the block-container.

Please note, that this does not work with FOP 0.20.5, only with FOP
0.92beta or later.

On 29.09.2006 19:48:29 Richard King wrote:
> How do you create a soft page break using FOP?


Jeremias Maerki


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

Reply via email to