Sergio wrote:

I'm trying to put a footnote at the same height that a static-content which draw a page number, but i can't do that.
You cannot do it in a reasonably robust way. Footnotes are rendered within a footnote-reference-area, which is a subregion of region-body and your static content is rendered within region-after. There is no way in xsl 1.0 to synchronoze areas in different regions.
Actually as a dirty hack you can overlap region-body and region-after:
<fo:region-body margin-bottom="10mm"/>
<fo:region-after extent="20mm"/>
and this way region-after will be rendered over region-body (or vice versa) so it might looks like footnote and page number are on the same line.

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel


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



Reply via email to