[Tex/LaTex] Suppress Numbering of Subfigures

floatsnumberingsubfloats

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?

Best Answer

Because you don't need labels and numbers of subsubfigures, and I guess you don't need captions as well, you could simply use minipage environments or \parbox for those figures instead of nesting subfigures.

Further, if you use the subfigure package, which is outdated, you might consider to use the newer subfig or subcaption package instead.

Related Question