On Wed, May 23, 2001 at 11:01:20PM +1000, Nghia wrote:
> I'm finding some featues of floating figures kind of annyoing. If I have
> a figure that won't fit on the page it will put on the next page, which
> is fine. But the text that is suppose to come after that figure comes
> before it instead and doesn't flow correctly. To illustrate I want:
> 
> <text>
> <figure>
> <text>
> 
> Instead it does
> 
> <text>
> <text>
> <figure> [on next page]
> 
> I have set !ht and that didn't quite work. Any suggestions? I can work
> aronud this by shrinking the figure but ....

The whole idea of a float is that it might not appear where it is defined.
However, you can use the H float placement by putting [H] in latex mode at
the beginning of the float. You also need to put \usepackage{float} in the
preamble.
Note that since there is no room for the float, the result will be
<text>
 (lots of empty space) 
pagebreak
<figure>
<text>

Another option, if you don't use a caption for the figure, is to just insert
the figure without using a float.

Reply via email to