OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] Footer on first page


The content of the footers is controlled by the footer.content template,
which is in fo/pagesetup.xsl.  It checks various conditions to determine
what to output in each position (left, center, right).  Something like this
turns off the header. If you put this near the top of the xsl:choose
statement in your copy of footer.content, you won't get any footer content
on the first page of each page-sequence.

      <xsl:when test="$sequence = 'first'">
        <!-- nothing for first pages -->
      </xsl:when>

However, if you have the footer rule line showing, it won't be controlled by
this.  You will have to turn it off in the footer.table template instead,
which is in the same stylesheet  file.

Bob Stayton
Sagehill Enterprises
DocBook Consulting
bobs@sagehill.net


----- Original Message ----- 
From: "Patrick Paul" <ppatrick@tiscali.fr>
To: <docbook-apps@lists.oasis-open.org>
Sent: Monday, October 31, 2005 7:19 AM
Subject: [docbook-apps] Footer on first page


> Hi,
>
> I have been trying to get rid of the footer on the first page of my
> articles. For some reason I can't seem to do that.
>
> The header does not show on the first page.
>
> Thank you,
>
> Patrick Paul
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
> For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org
>
>
>




[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]