I want to include some figures on the right of some list items. Here is an example with one figure in the second item:
\starttext
\startitemize[n]
\item first item
\item \placefigure[right]{none}{\framed[width=1in]{Figure}} \input knuth
\item third item
\stopitemize
\stoptext
Everything is great except there is a blank line after the item label. How can I remove this blank line so the content of the item is right after the item label?
If I use \startfiguretext instead of \placefigure:
\item \startfiguretext[right]{none}{\framed[width=1in]{}} \input knuth
\stopfiguretext
Not only is there a blank line after the item label, but the list item is no longer indented.
\starthanging[location=right]{…}…\stophangingmechanism would probably do the job. – Marco Mar 13 '13 at 18:09\starthangingand\stophangingare not recognized. I'm using TeX Live 2012: ConTeXt 2012.05.30 with XeTeX 9.99.99. – suyang Mar 13 '13 at 19:55\startitem ... \stopiteminstead of\item ...and putting your figure between items? (I didn't test this, just had this idea.) – mbork Mar 13 '13 at 20:36