Possible Duplicate:
Subfigs of a figure on multiple pages
I have inserted some images in a latex document using figure and subfigure, like this:
\begin{figure}[H]
\centering
\subfigure[]
{
}
\subfigure[]
{
}
\subfigure[]
{
}
...
\subfigure[]
{
}
\end{figure}
The problem is that there are about 20 such subfigures which do not fit on a single page. Latex is not inserting any pagebreak here. I also tried inserting page breaks myself after a few figures using newpage commands like \newpage
, \clearpage
and even \pagebreak
, but none of these works.
Could someone please suggest a solution to this problem. Thanks in advance.