Hi,
 
I have a small document with a few figures and all of them should
be placed where I write them in the document. ConTeXt has the
'force' for placefloat to get this but the key has also many sideeffects.
 
Take the following example, the second headers appears at page 4
but the rest of the page is empty and the figures continue at page 5.
 
I tried to use another value \fixedfloatmethod but none of them give a
prefect result.
 
- \chardef\fixedfloatmethod=0 put the socnd header an page 2
- \chardef\fixedfloatmethod=1 put the second header at the bottom
  of the first page
- \chardef\fixedfloatmethod=2 put the second header at the bottom
  of page 3 and the figures continue an page 4
- \chardef\fixedfloatmethod=3 is the default with a empty page 4
  except the second header

\setupfloat[figure][default=force]

\starttext

\dorecurse{2}
  {\section{Section}
   \dorecurse{6}{\placefigure{none}{\framed[width=12cm,height=8cm]{}}}}

\stoptext

Wolfgang