Re: [xsl] How to shift an image to the bottom of its current page ?

Subject: Re: [xsl] How to shift an image to the bottom of its current page ?
From: "W. Eliot Kimber" <eliot@xxxxxxxxxx>
Date: Thu, 09 Jan 2003 10:25:06 -0600
David Tolpin wrote:

  <fo:block>
    <fo:footnote>
      <fo:footnote-body>
        <fo:external-graphic src="url(foo.jpg)"/>
      </fo:footnote-body>
    </fo:footnote>
  </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>

Cheers,

E.
--
W. Eliot Kimber, eliot@xxxxxxxxxx
Consultant, ISOGEN International

1016 La Posada Dr., Suite 240
Austin, TX  78752 Phone: 512.656.4139


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread