Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using XSLT and XSL-FO for document creation. And the requirement is: in a document the page number should start from page 2 (on page 2 the number should be 1).

In layout-master-set I created 2 simple-page-master and tried in the following way:

<fo:layout-master-set>
    <fo:simple-page-master master-name="cover" page-height="11in" page-width="8.5in">
        <fo:region-body margin="0.1in 1.0in 0.45in 1.0in"/>
    </fo:simple-page-master>

    <fo:simple-page-master master-name="master" page-height="11in" page-width="8.5in">
        <fo:region-body margin="0.1in 1.0in 0.45in 1.0in"/>
        <fo:region-after  region-name="footer-first1" extent="1.2in"/>
    </fo:simple-page-master>


    <fo:page-sequence-master master-name="CoverPage1">
        <fo:repeatable-page-master-alternatives>
            <fo:conditional-page-master-reference master-reference="cover" page-position="first" />
        </fo:repeatable-page-master-alternatives>
    </fo:page-sequence-master>


    <fo:page-sequence-master master-name="CoverPage">
        <fo:repeatable-page-master-alternatives>
            <fo:conditional-page-master-reference master-reference="cover" page-position="first" />
            <fo:conditional-page-master-reference master-reference="master"  page-position="rest"/>
        </fo:repeatable-page-master-alternatives>
    </fo:page-sequence-master>
</fo:layout-master-set>

<fo:page-sequence master-reference="CoverPage1">
    <fo:flow flow-name="xsl-region-body">
        <xsl:apply-templates/>
    </fo:flow>
</fo:page-sequence>

<fo:page-sequence initial-page-number="1" master-reference="CoverPage">
    <fo:static-content flow-name="footer-first1">
        <xsl:call-template name="footer1"/>
    </fo:static-content>
    <fo:flow flow-name="xsl-region-body">
        <xsl:apply-templates/>
    </fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>

and footer:

<xsl:template name="footer1"> 
  <fo:block font-family="Times" text-align="center" font-size="10.5pt" space-before="45pt">
    <fo:block><fo:leader leader-length="6.8in" leader-pattern="space"/><fo:page-number/></fo:block>
  </fo:block>
</xsl:template>

When I remove

<fo:conditional-page-master-reference master-reference="cover" 
                                      page-position="first" /> 

from <fo:page-sequence-master master-name="CoverPage">,

FOP throws the following exception:

FOPException: subsequences exhausted in page-sequence-master 'CoverPage', cannot resolve

Any idea or help about how to handle this?

share|improve this question
Why are you trying to remove the reference to "cover"? – GetSet Apr 13 '12 at 16:21
What is the reason for this unusual behaviour? Is the first page to be a left page as oppose to the default of right hand side page as the first? – javabeangrinder Jan 23 at 12:34
OK, this is a very old issue I just noticed - Have you solved it? – javabeangrinder Jan 23 at 12:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.