Is there a way to supress the numberings of subfigures within subfigures?
Currently, I have something like the following:
\begin{figure}
\subfigure{
\subfigure{...}
\subfigure{...}
\subfigure{...}
}
\subfigure {
...
}
...
\end{figure}
So I have the entire figure, within which I have subfigures, which consist of more figures (i.e. subsubfigures). Each subfigure contains 9 subsubfigures and I have 5 subfigures. Because each subsubfigure and each subfigure get numbered and labeled, I get a Counter too large error because there are more than a-z figures.
I only really care about the numbering and labeling on the subfigures (i.e. I don't care about the numbering on the subsubfigures). Is there a way to suppress the numbering on the subsubfigures so that I only have subfigures a through e that are labeled and thus also avoid the error?