John Levon <[EMAIL PROTECTED]> writes:
| On 19 Mar 2001, Jean-Marc Lasgouttes wrote:
|
| > >>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
| >
| > Lars> I disagree. We write the floats to support the float.sty package
| > Lars> (or a better one if it exists) and the default floats in LyX. We
| > Lars> should not add code to cope with packages/paramters that we have
| > Lars> never heard of.
| >
| > OK, assume I want to say "put the float on the bottom of the page, but
| > if you can't, put it here". How would you do that? AFAIK, this is a
| > perfectly normal use of these options.
| >
| > JMarc
|
| I implemented combo boxes like this :
|
| First try : ########
| Then : ########
| Then : ########
|
| where each entry had top, bottom, here, separate page entries. Though
| I think I misunderstood how latex interprets the "htbp" or whatever string.
| Can some explain the exact algorithm ?
|
| Also, "H" is new to me. How does it differ from "!h" ??
"H" - can only be used alone and mean put it HERE.
"!" - firm. I really want you to do what I say.
"h" - here, if possible
"t" - top, if possible
"b" - bottom, if possible
"p" - ona page of its own, if possible.
Algorithm close to this:
if placement string contains "h" put it here if possible
if not possible and string contains "t" put it at top if possible
if not possible and string contains "b" put it at bottom if possible
if not possible and string contains "p" put it a page of its own (or
with other floats)
as said the order is insignificant.
Lgb