4

How do I define the spacing between two figures, when using \subbottom ? My code looks like the following:

\begin{figure}
\centerfloat
\subbottom[Manual segmentation of colon and liver. The two green segmentations are colon and the red is liver.]{%
\includegraphics[width=0.6\textwidth]{img/selection_colon_liver_thin.pdf}}
\subbottom[Histogram of the two segmentations of colon and liver made with 200 bins.]{%
\includegraphics[width=0.8\textwidth]{img/histogram_colon_liver.pdf}}
\caption{Needs caption}
\end{figure}

The captions are two long, so they get "merged" together. How do I separate them? Screendump of the two captions

1 Answers1

4

Just to make it into an answer

\subbottom does not provide padding, but manually adding, say, \quad between the \subbottom's should do the trick

daleif
  • 54,450