Marko Petersen wrote:
I am trying to add a line between the main-reference-area and
the footnote-reference-area. Has anybody an idea how to do
this?
The spec provides a special region named "xsl-footnote-separator"
for this purpose, you could put a leader in it:
<fo:static-content flow-name="xsl-footnote-separator">
<fo:block><fo:leader leader-pattern="rule"/></fo:block>
</fo:static-content>
Unfortunately, FOP does not implement this. IOW you're hosed.
If you are adventurous, check out the area tree output (aka XML
output). You might be able to automatically leverage this to
determine which footnotes are the first on a page, and then do
a second XSLT/rendering pass, using this information to insert
a leader in the footnote-body of said footnotes.
J.Pietschmann