Date sent:              Wed, 10 Sep 2003 11:28:10 +0200
From:                   Kuba Kr�likowski <[EMAIL PROTECTED]>
Subject:                Summary at end of the page
To:                     [EMAIL PROTECTED]
Send reply to:          [EMAIL PROTECTED]

> Hello!
>
> I have asked for it some time ago, but I didn't get any satisfying
> answer: how to make summary at end of the page using FOP? I want to
> print long table on few pages, and on every page I want to put summary
> under some columns (where should be sum of column values). The problem
> is that I don't know where is the page break and which values I have to sum.
>
> Kuba Kr�likowski
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

   I solved a similar problem with 'fo:marker' and 'fo:retrieve-marker'
   On this way you get a 'dynamic' page-footer. (one or more lines)
   Think this can solve your problem too.

    in page-sequence:

    ...
    <fo:static-content flow-name="xsl-region-after">
          <fo:retrieve-marker retrieve-class-name="pagefoot"/>          
     </fo:static-content>

   every time the foot changes:

    ....
    <fo:block>
       <fo:marker marker-class-name="pagefoot">
          <fo:block
            ... pagefoot .....
          </fo:block>
         </fo:marker>
     </fo:block>

 MfG
 Butterweck Ralf

 UBH Software & Engineering GmbH
 Sulzbacher Str. 105
 92224 Amberg
 Tel: 09621/6758-24
 Fax: 09621/6758-60
 Mail:[EMAIL PROTECTED]


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

Reply via email to