Stijn,

your FO perhaps contains pre-REC xsl-fo constructs.

According to the REC version of FO, you should point from a
page-sequence to a page-master like this:

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"; >
     <fo:layout-master-set>
          <fo:simple-page-master master-name="test-page-master"
page-width="8.5in" page-height="11in">
               <fo:region-body margin-top="0.4in"/>
          </fo:simple-page-master>
     </fo:layout-master-set>
     <fo:page-sequence master-reference="test-page-master">
          <fo:flow flow-name="xsl-region-body">
               [...]
          </fo:flow>
     </fo:page-sequence>
</fo:root>

Hence the distinction between master-name and master-reference on
simple-page-master and page-sequence.

I know older versions of FOP supported specifying master-name on both
simple-page-master and page-sequence, which has become incorrect since
then. And I'm not sure if this was corrected in my slides ;-)

Regards,

</Steven>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to