xsl-list
[Top] [All Lists]

Re: [xsl] xsl-fo: fo:floats stay with prev element and next element starts after float

2013-09-26 16:11:46
At 2013-09-26 16:53 -0400, Bryon Thomas wrote:
Right now, when I have multiple floats, the floats will all (mostly
starting from parent titles), group on the right under each other
starting at the top of the page. The xml elements on the left will all
bunch together on the top left (Meaning the text on the left is at the
top, and the images on right are from top to bottom.
Snippet of current code:Any help would be greatly appreciated, I can't
figure out the floats quickly enough.

You need two things:

 - the float has to be specified inside the block with the text

 - the block needs clear="end" in order to flow after the previous last float

This end result is what I mocked up and works in Antenna House:

    <flow flow-name="frame-body" font-size="40pt" clear="end">

      <block clear="end">
        <float float="end" intrusion-displace="block">
          <block background-color="silver">F111</block>
          <block background-color="silver">F111</block>
          <block background-color="silver">F111</block>
        </float> B222 B222 </block>

      <block clear="end">
        <float float="end" intrusion-displace="block" clear="end">
          <block background-color="silver">F111</block>
          <block background-color="silver">F111</block>
          <block background-color="silver">F111</block>
        </float> B222 B222 B222 </block>

    </flow>

I hope this helps.

. . . . . . . . . . . Ken


--
Public XSLT, XSL-FO, UBL & code list classes: Melbourne, AU May 2014 |
Contact us for world-wide XML consulting and instructor-led training |
Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm |
Crane Softwrights Ltd.            http://www.CraneSoftwrights.com/s/ |
G. Ken Holman                   mailto:gkholman(_at_)CraneSoftwrights(_dot_)com 
|
Google+ profile: https://plus.google.com/116832879756988317389/about |
Legal business disclaimers:    http://www.CraneSoftwrights.com/legal |


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>