Torsten Straube wrote:
...
<fo:simple-page-master ... master-name="first">
...
</fo:layout-master-set>
<fo:page-sequence master-reference="first">
<fo:static-content flow-name="xsl-region-before-first">
...
You use the simple page master named "first" for the whole
page sequence, which will give you the same static content
for every page. Somehow I feel you have misunderstood how
page sequence masters are supposed to work. I guess you want
to have
<fo:page-sequence master-reference="note">
<fo:static-content flow-name="xsl-region-before-first">
<fo:block space-after.optimum="18pt" font-family="Helvetica">
... table ...
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-first"/>
<fo:static-content flow-name="xsl-region-before-list">
<fo:block ... />
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-list"/>
<fo:flow flow-name="xsl-region-body">
...
</fo:flow>
</fo:page-sequence>
Of course, you should use the same region name for the body in
all simple page masters referenced by the page sequence master
J.Pietschmann
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]