3

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.

suyang
  • 51
  • 3

1 Answers1

2

@mbork Your suggestion worked like a charm. The code now looks like this:

\starttext
\startitemize[n,joinedup]
    \item first item
\stopitemize
\placefigure[right]{none}{\framed[width=1in,height=3in]{Dummy\crlf Figure}}
\startitemize[n,continue]
    \item \input knuth
    \item \input tufte
\stopitemize
\stoptext
suyang
  • 51
  • 3