Subject: Re: How to shift an image to the bottom of its current page
From: David Tolpin <dvd@xxxxxxxxxxx>
Date: Thu, 9 Jan 2003 20:45:53 +0400 (AMT)
|
> > </fo:block>
>
> Note that the spec requires fo:inline as the first child of fo:footnote,
> so the most correct markup is:
>
> <fo:footnote>
> <fo:footnote-body>
> <fo:inline/>
> <fo:external-graphic src="url(foo.jpg)"/>
> </fo:footnote-body>
> </fo:footnote>
Actually, both of us were wrong.
<fo:footnote>
<fo:inline/>
<fo:footnote-body>
<fo:block>
<fo:external-graphic src="url(foo.jpg)"/>
</fo:block>
</fo:footnote-body>
</fo:footnote>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|