Code: Select all
\begin{figure}
\subfloat[]
{
\subfloat[]{}
\subfloat[]{}
}
\end{figure}
Thanks,
sumesh
Code: Select all
\begin{figure}
\subfloat[]
{
\subfloat[]{}
\subfloat[]{}
}
\end{figure}
NEW: TikZ book now 40% off at Amazon.com for a short time.
The subfig package is not prepared to handle multiple levels at all.sumesh wrote:How do I achieve multiple levels ? For example \subsubfloat? Is that possible? If not is there another alternative any body knows?
Code: Select all
\begin{figure}
\caption{Effect of some12+thing12 on something else}
\subfloat[Effect of some on something else]
{
\subfloat[Effect of some-1 on something else]{some-1.eps}
\subfloat[Effect of some-2 on something else]{some-2.eps}
}
\subfloat[Effect of thing on something else]
{
\subfloat[Effect of thing-1 on something else]{thing-1.eps}
\subfloat[Effect of thing-2 on something else]{thing-2.eps}
}
\end{figure}
NEW: TikZ book now 40% off at Amazon.com for a short time.