How can I place subcaptions of subfloats (subfigures) on their right side?
+1
A:
You might want to explore the sidecap package. Whether it behaves nicely with subfigures, I don't know...
Seamus
2010-07-20 11:31:55
It doesn't look like it from the documentation.
Geoff
2010-07-20 13:21:20
I just tried it. It does exactly what the OP wants, regardless of what the README says. (that is, it works for figures. I can't be bothered hacking together an example with subfigures right now)
Seamus
2010-07-21 18:02:28
A:
You could put your subfig
next to a minipage
with the graphic.
For example:
\begin{figure}
\begin{minipage}{1in}
\graphic
\end{minipage}
\begin{minipage}{1in}
\begin{subfloat}[This is a caption]
~
\end{subfloat}
\end{minipage}
\end{figure}
Where \graphic
is a placeholder for your image (I used \def\graphic{\rule{1in}{1in}}
)
I don't know how to ensure that the empty sub-float gives enough space for the caption, however.
Geoff
2010-07-20 13:20:40