Reputation: 65
I have a problem with the FO flow, because on one page the title shows up in the end of one page and continues on the page after. How can I add an attribute to the title-element so the title is always displayed on the same page, that means: NO page break.
Thanks!
/Dannie
Upvotes: 4
Views: 2540
Reputation: 52858
Try adding keep-together.within-page="always"
to the fo:block
that contains your title.
Example:
<fo:block keep-together.within-page="always">Your title...</fo:block>
Upvotes: 4