I am producing a letter (pdf) using XSLT-FO. On the first page I have the company logo/image and the start of the letter content. I don't want to show the logo on any other pages so I am using repeatable-page-master-alternatives. The problem is it repeats the text block (smf:body) on the next page instead of just continuing it from the first page. I have done lots of internet searching to try and find why this is - but I am unable to resolve. Here is a the XSL-FO:
<xsl:template match="/smf:workItem">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="first-page" page-height="29.7cm" page-width="21cm" margin-top="0.5cm" margin-bottom="1cm" margin-left="1.75cm">
<fo:region-body margin-right="2cm" margin-top="1.27cm" margin-bottom="1mm" />
<fo:region-before region-name="header-first" extent="0mm" />
<fo:region-after region-name="footer-first" extent="0mm" />
<fo:region-end border-top-width="5pt" region-name="right-sidebar" writing-mode="tb-rl" extent="10mm" />
</fo:simple-page-master>
<fo:simple-page-master master-name="all-pages" page-height="29.7cm" page-width="21cm" margin-top="0.5cm" margin-bottom="1cm" margin-left="1.75cm">
<fo:region-body margin-left="0.25cm" margin-right="2cm" margin-top="1.27cm" margin-bottom="1mm" />
<fo:region-before region-name="header-normal" extent="0mm" />
<fo:region-after region-name="footer-normal" extent="0mm" />
</fo:simple-page-master>
<fo:page-sequence-master master-name="document" font-family="Helvetica">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference page-position="first" master-reference="first-page"/>
<fo:conditional-page-master-reference page-position="any" master-reference="all-pages" />
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
<!--
<fo:page-sequence-master master-name="document" font-family="Helvetica">
<fo:single-page-master-reference master-reference="first-page"/>
<fo:repeatable-page-master-reference master-reference="all-pages"/>
</fo:page-sequence-master>
-->
</fo:layout-master-set>
<fo:page-sequence master-reference="document">
<fo:static-content flow-name="header-first" font-size="10pt">
<fo:external-graphic src="url('C:\Program Files (x86)\numerointeractive\whitemail\Images\club1830.jpg')" />
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="10pt" linefeed-treatment="preserve" white-space-collapse="false" white-space-treatment="ignore-if-surrounding-linefeed" wrap-option="wrap">
<xsl:value-of select="smf:body"/>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
Please can someone help me with this. The block (smf:body) is in the page-sequence that defines my layout, but for some reason it repeats it. Any help would be very much appreciated.
Thanks.
ps - I have also tried using single/repeatable page masters but it behaves the same
