On Fri, 8 Sep 2006 07:43:17 -0700
David Arnold
Use \indentation, as in:
\indentation Now is the time.
On Sep 8, 2006, at 6:29 AM, Wolfgang Werners-Lucchini wrote:
Hallo!
I have a problem with indenting. The paragraph following the \placefigure is not indented and I find not any way to achieve this. The following testfile shows the situation: ---------------------------------------------- \setupfloats[indentnext=yes]% <--- Doesn't help! \setupfloat[figure][default={page,high,none}] \setupcaption[figure][number=no] \setupindenting[medium,yes,next] \starttext \dorecurse{2}{\input knuth\par} \placefigure{}{\framed[offset=none, width=\makeupwidth, height=\textheight]{figure}}
\indenting[yes]% <--- Doesn't help! \indent {\bf Here!} % <--- Doesn't help! \dorecurse{3}{\input knuth\par} \stoptext ---------------------------------------------- I tryed the 'indentnext=yes' in \setupfloats but I don't know if that option should do what I want or if it has an other meaning.
Wolfgang
The following works on my machine \setupindenting[yes,medium] \setupfloats[indentnext=yes] \starttext \input knuth \par \placefigure {} {\framed [offset=none, width=0.6\makeupwidth, height=0.4\textheight] {figure}} \dorecurse{3}{\input knuth\par} \stoptext Wolfgang