You could use an 'empty' table, and set the border-x
attributes.
This would at least give you a line separator.
I used this a while ago, putting it first in the footer to
achieve the 'separator' effect.
Example below. Called it using xsl:call-template
name='footer-leader'
(not nice, but works)

<xsl:template name="footer-leader">
    <fo:block>
      <fo:table table-layout="fixed">
        <fo:table-column column-width="150mm"/>
        <fo:table-body>
          <fo:table-row line-height="2pt">      
          <fo:table-cell 
            border-bottom-style="solid" 
            border-bottom-color="black" 
            border-bottom-width="0.5pt">
            <fo:block 
              font-size="10pt" 
              color="white">_
            </fo:block>
          </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="10pt">       
         <fo:table-cell 
           border-top-style="solid" 
           border-top-color="black" 
           border-top-width="0.5pt">
           <fo:block font-size="10pt" color="white">_
           </fo:block>          
         </fo:table-cell>
        </fo:table-row>
      </fo:table-body>
    </fo:table>
   </fo:block>
  </xsl:template>

hth ///
        Magnus

Oleg Tkachenko wrote:
> 
> Myriam Delperier wrote:
> 
> > i'm sure this questions has already been asked
> > but does anyone know if it is possible to put a separator before the first
> > footnote of each page.?
> > I've heard about something named xsl-footnote-separator but i don't know if
> > it works and how it works
> > ps: i'm using fop 0.20.5rc
> Unfortunately afaik xsl-footnote-separator is not implemented yet.
> 
> --
> Oleg Tkachenko
> Multiconn Technologies, Israel
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to