Hi:
Need some help related to watermark to appear on all pages, currently, I'm
able to make it appear only on the first page. The relevant xsl:fo tags
follow. I have used a
<fo:block break-after="page" />
for forced page break, but after the forced page break, the watermark does
not appear on page2, it appears on page 1 though.
Appreciation in advance.
warm regards,
Debasish
------
<fo:flow flow-name="xsl-region-body">
<fo:block-container position="absolute"
left="0mm" top="0mm" width="210mm" height="297mm">
<fo:block text-align="center" font-size="0mm">
<fo:instream-foreign-object width="210mm" height="297mm">
<svg xmlns="http://www.w3.org/2000/svg"
width="210mm" height="297mm"
viewBox="0 0 200 200" preserveAspectRatio="none">
<g transform="translate(10,100)">
<g transform="rotate(-25)">
<text x="0" y="6"
style="font-family:Courier;font-size:10;font-weight:normal;stroke-width:0.5
;fill:none;stroke:lightgray;stroke-opacity:0.75;">
WaterMark
</text>
</g>
</g>
</svg>
</fo:instream-foreign-object>
</fo:block>
</fo:block-container>
. . . . . . . . .
<fo:block break-after="page" />
</fo:flow>
and then I have other fo tags like fo:table