On Thu, Apr 03, 2003 at 07:54:15PM +0300, Dekel Tsur wrote:

> > > 3. Now repopen the "Float settings" and note that the "Bottom of page" 
> > >    settings is not selected anymore!
> > 
> > Some latex guy tell me what should be happening here ? I assume 'b' is
> > ok for a wide float ?
> 
> In standard latex, it is forbidden. There are packages that allow it.

What about 'h' and 'H' ?

Here is the relevant source :

     79 void QFloatDialog::spanClicked()
     80 {
     81         bool const span(spanCB->isChecked());
     82
     83         if (!defaultsCB->isChecked()) {
     84                 herepossiblyCB->setEnabled(!span);
     85                 heredefinitelyCB->setEnabled(!span);
     86                 bottomCB->setEnabled(!span);
     87         }
     88
     89         if (!span)
     90                 return;
     91
     92         herepossiblyCB->setChecked(false);
     93         heredefinitelyCB->setChecked(false);
     94         bottomCB->setChecked(false);
     95 }

(I added bottomCB here). Is that bit OK ?

regards
john

Reply via email to