Am 04.07.2014 um 10:21 schrieb Mojca Miklavec
Hi,
When placing figures side-by-side I usually use
\placefigure[force][label]{}{\startcombination[2*1] {\externalfigure[A]}{Some description of A} {\externalfigure[B]}{Some description of B} \stopcombination}
But this time I would like to get two separate figures with two separate titles:
[figure] [figure] Figure 1.1: Long description of A Figure 1.2: Long description of B
with those long descriptions being "justified" (they split in multiple line already), not centered.
What is the best way to achieve that?
Use the floatcombination environment. \useMPlibrary[dum] \starttext \startplacefigure[location=nonumber] \startfloatcombination%[width=\textwidth,distance=0pt] \startplacefigure[title={Some description of A}] %\externalfigure[A][width=4cm] \framed[frame=off,offset=none,width=.5\textwidth]{\externalfigure[A][width=4cm]} \stopplacefigure \startplacefigure[title={Some description of B}] %\externalfigure[B][width=4cm] \framed[frame=off,offset=none,width=.5\textwidth]{\externalfigure[B][width=4cm]} \stopplacefigure \stopfloatcombination \stopplacefigure \stoptext Wolfgang