10 Nov
2020
10 Nov
'20
9:15 a.m.
On Tue, 10 Nov 2020 at 10:05, mf
Il 10/11/20 09:42, Sylvain Hubert ha scritto:
Dear List,
Does anyone know how to indent the paragraph beneath \placefigure in the following example?
\indenting[2em] \setupindenting[yes]
\starttext
\dorecurse{50}{a b c }
\placefigure[here,none][indentnext=yes]{}{ \startMPcode draw fullcircle scaled 1cm; \stopMPcode }
\dorecurse{50}{d e f } % not indented
\dorecurse{50}{g h i } \stoptext
The second bracket group of \placefigure is for references. Instead of
\placefigure[here,none][indentnext=yes]{}{...
write
\setupfloat[figure][indentnext=yes] \placefigure[here,none]{}{...
That way you enable indentation after every figure.
Massi
Hi Massi, It works! Thanks for the help! Sylvain