Yann Verlynde wrote:

I have some trouble with fo:marker. The String that I want to write on the
top of my page when my text in on 2 pages minimum does not work.
I see it on the first page but not on the second.
Does anyone can help me?

This is my code in my static-content
<fo:static-content flow-name="xsl-region-before">
<fo:block-container absolute-position="absolute" top="50mm">
<fo:block>
<fo:retrieve-marker retrieve-class-name="sexe-M"
retrieve-position="first-including-carryover" retrieve-boundary="page">
M
</fo:retrieve-marker>
Here is a mistake - <fo:retrieve-marker> object must have no content, it's just a counterpart of <fo:marker>, which *retrieves* a marker value and therefore it doesn't have its own value.


<fo:retrieve-marker retrieve-class-name="sexe-F"
retrieve-position="first-including-carryover" retrieve-boundary="page">

F

</fo:retrieve-marker>
The same mistake.
The main idea underneath is pretty simple - you define a marker of one class at your table cells, having content either M or ? and in static content you just retrieves the marker of this class.


--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel



Reply via email to