Hello,
Your problem is very simple. In XSL-fo you have the so cold region area.
You can define a region-after in your page master definition then place a static content in it(like the number of the page).
Here is an exemple:
<fo:simple-page-master master-name="rest" page-height="29.7cm"
page-width="21.0cm"
margin-top="0.5cm"
margin-bottom="0.5cm"
margin-left="0.5cm"
margin-right="0.5cm">
<fo:region-body margin-top="4cm" margin-bottom="1cm" background-color="#CCCFF1"/>
<fo:region-before extent="3.5cm" region-name="before-rest" background-color="#CCFFF2" />
<fo:region-after extent="0.5cm" region-name="after-rest" background-color="#CCCFF1"/>
</fo:simple-page-master>
So this is your page definition . Now if you want to place some static content in the region-after you do like this:
<fo:static-content flow-name="after-rest">
<fo:block>Some static content </fo:block>
</fo:static-content>
This is a basic example. You have a lot of examples on the web.
Message édité par bdegeratu le 04-08-2005 à 09:32:13