Is there any restriction about \includegraphics usage? This question arise from a LaTeX document where the number of \includegraphics has an uncommon result. When exceeded a limit number of includes at a particular section, the following includes aren't displayed (no error).
Asked
Active
Viewed 994 times
0
1 Answers
0
Based on this statement, occured to me, if clustering subfigures of a figure whose occupy the "float page" limits, would solve the problem. It worked fine!
\begin{figure}[htp]
\begin{subfigure}[b]
\centering
\includegraphics[width=0.75\textwidth] {./images/0}
\label{aload0}
\caption{}
\end{subfigure}
\begin{subfigure}[b]
\centering
\includegraphics[width=0.75\textwidth] {./images/1}
\label{aload1}
\caption{}
\end{subfigure}
\end{figure}
...
Same structure repeated to the other figures.
Jack
- 1
-
If this solved your problem, then the question seems to be completely unrelated. Yes, you would not have received an error, but you would have been able to see all the images. Moreover, there's no need to include them in sub-figures if the only intent is to just show them. You can include a number of
\includegraphicsin the same float (figureenvironment), and that would be fine. – Werner Mar 07 '14 at 17:39
Too many unprocessed floatserror message. See the duplicate question I linked to. – egreg Apr 06 '14 at 19:49