How do you add a page break in a PDF with XSL-FO?
The FOP compliance page says that it supports page-break-after
, page-break-before
, and page-break-inside
in the later versions, plus partial support for keep-together
, keep-with-next
, keep-with-previous
.
You can also do:
<fo:block page-break-before="always">
...things you want in a new page...
</fo:block>
Thanks, the following worked for adding a page break after a table:
<fo:table break-after="page">