Graphics, Figures & Tablessubfigure | Page Overflow with many Sub-figures

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

subfigure | Page Overflow with many Sub-figures

Post by 21did21 »

hi !

i use subfigure and it works nice but now when i put 6 figures there is a problem : the 2 last figures are not in my page :(
-> there is overflowing

can you explain to me how i can modify this to have my six figures :roll:

thanks

Code: Select all

\begin{figure*}
\centering
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/A}
\label{ppp:subfig1}
}
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/B}
\label{ppp:subfig2}
}
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/C}
\label{ppp:subfig3}
}
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/D}
\label{ppp:subfig4}
}
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/E}
\label{ppp:subfig5}
}
\subfigure[]
{
\includegraphics[width=0.5\linewidth]{figures/F}
\label{ppp:subfig6}
}
\caption[]{my comments\subref{ppp:subfig1}\subref{ppp:subfig2}:
first and second comment;
\subref{ppp:subfig3}\subref{ppp:subfig4}: 3rd and 4th comment; \subref{ppp:subfig5}\subref{ppp:subfig6}: 5th and 6th comment.}
\end{figure*}
Last edited by 21did21 on Thu Mar 01, 2012 7:17 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10350
Joined: Mon Mar 10, 2008 9:44 pm

subfigure | Page Overflow with many Sub-figures

Post by Stefan Kottwitz »

I recommend to use the subfig package instead, since this is the successor of the obsolete subfigure package.

Stefan
LaTeX.org admin
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Re: subfigure | Page Overflow with many Sub-figures

Post by 21did21 »

thanks, i will test
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

subfigure | Page Overflow with many Sub-figures

Post by localghost »

You have already been advised not to use this package [1]. Why didn't you already incorporate in your document to avoid those problems? Are there any reasonable arguments against this package?

[1] View topic: subfigure | Trim Figures


Thorsten
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Re: subfigure | Page Overflow with many Sub-figures

Post by 21did21 »

In fact it works well with subfig. I was not there happened earlier because I had solved my problem of "trim" otherwise.
Post Reply