On Tue, 8 Jan 2002, Patrick Andries wrote:
> If one duplicates a few blocks in docs/examples/corresp.fo so as to 
> generate an additional page, the last lines of the block on the new page 
> overwite the footer instead of being printed on a new page.

Changing the <fo:region-body>'s bottom margin fixes the problem. Here's 
the change made to one simple-page-master:

BEFORE:
<fo:region-body margin-top="3cm"/>
<fo:region-before extent="3cm"/>
<fo:region-after extent="1.5cm"/>

AFTER:
<fo:region-body margin-top="3cm" margin-bottom="1.5cm"/>
<fo:region-before extent="3cm"/>
<fo:region-after extent="1.5cm"/>

This is because the region-after sticks up into the region-body by the 
amount specified in the extent property. See section 6.4.12 of the XSL 
spec for a couple diagrams and some description.




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

Reply via email to