Code: Select all
\begin{figure}
\subfloat[]
{
\subfloat[]{}
\subfloat[]{}
}
\end{figure}
Thanks,
sumesh
Code: Select all
\begin{figure}
\subfloat[]
{
\subfloat[]{}
\subfloat[]{}
}
\end{figure}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis