Sorry, I think I misunderstood the problem the first time (since I didn't actually run your example until now). \setupfloats[indentnext=yes] (as I understand it) controls the behaviour after the float is actually placed in the output, rather than after the \placefigure... in the source. I'd expect the blank line after the \placefigure to trigger indentation for the next paragraph, but this doesn't happen. I now remember seeing this problem while typesetting a thesis chapter. Going back to my source file, I see I worked around it in the most obvious way: \setupindenting [yes, medium] \setupfloats [indentnext=yes] \starttext This line is indented as intended. \placefigure[auto][fig:somefigure]{My graphic}{} \indentation This is indented, but only because of the explicit command. This line is fine. \stoptext Maybe there is a better solution, but I don't know it... hope this is helpful anyway. Regards, Pont On Sun 27 Mar 2011, Marco wrote:
On 2011-03-27 Pontus Lurcock
wrote: On Sat 26 Mar 2011, Marco wrote:
How to indent the paragraph after a \placefigure?
http://wiki.contextgarden.net/Reference/en/setupindenting says that \setupfloats[indentnext=yes] should give the desired result. (I haven't tested it, though.)
According to the manual \setupfloats[indentnext=yes] is the default behaviour. But it's not working, same result here:
\setupindenting [yes, medium] \setupfloats [indentnext=yes] \starttext This line is indented as intended.
\placefigure[auto][fig:somefigure]{My graphic}{}
This is not, but I'd like it to be.
This line is fine. \stoptext
Marco