Hi,
it's possible.
You have to create different headers for first and rest pages.


Regards
Sven


Example:

<fo:page-sequence master-reference="firstmaster">
        <!-- Header -->
                <fo:static-content flow-name="xsl-region-before">
                        <xsl:copy-of select="$header_first" />
        </fo:static-content>
        <!-- Header-End -->
        <!-- Footer -->
                <xsl:copy-of select="$footer" />
        <!-- Footer-End -->
        <fo:flow flow-name="xsl-region-body">
                <fo:block >
                        <xsl:call-template name="first" />
                </fo:block>
        </fo:flow>
</fo:page-sequence>

<fo:page-sequence master-reference="master">
        <!-- Header -->
                <fo:static-content flow-name="xsl-region-before">
                        <xsl:copy-of select="$header" />
        </fo:static-content>
        <!-- Header-End -->
        <!-- Footer -->
                <xsl:copy-of select="$footer" />
        <!-- Footer-End -->
        <fo:flow flow-name="xsl-region-body">
                <fo:block >
                        <xsl:call-template name="first" />
                </fo:block>
        </fo:flow>
</fo:page-sequence>

<xsl:variable name="header_first">
        <!-- Header -->
</xsl:variable>

<xsl:variable name="header">
        <!-- Header -->
</xsl:variable>





[EMAIL PROTECTED] wrote:

> Hi ,
> I am trying to create a style sheet so that the Header info appears only on
> page one.
> I want to know whether is it possible ?  Appreciate your reply.
> Thanks and Regards
> Rohit
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

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

Reply via email to