Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you add a page break into a document with XSL-FO? I'm using Apache FOP to create PDFs, if that makes a difference.

share|improve this question

3 Answers

up vote 5 down vote accepted

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.

share|improve this answer

You can also do:

<fo:block page-break-before="always">
share|improve this answer

Thanks, the following worked for adding a page break after a table:

<fo:table break-after="page">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.