[Tuglist] placing more figures on a page
H.S.Rai
tuglist@tug.org.in
Thu, 2 May 2002 11:25:23 +0530 (IST)
On Wed, 1 May 2002, M K Saravanan wrote:
> I want to place 8 figures on a two col. page like:
> f4 f8
>
> But I am getting f7 and f8 on the next page only though there is enough
> space on the first page. How to control the vertical space between two
> figures?
I would suggest you to use tabular like:
\begin{figure}[!h]
{ \centering \begin{tabular}{|c|c|} \hline
\includegraphics[width=0.4\columnwidth]{pic11.eps}& \includegraphics[width=0.4\columnwidth]{pic12.eps}\\ text for pic11 & text for pic 12 \\\hline
\includegraphics[width=0.4\columnwidth]{pic11.eps}& \includegraphics[width=0.4\columnwidth]{pic12.eps}\\ text for pic11 & text for pic 12 \\\hline
\includegraphics[width=0.4\columnwidth]{pic11.eps}& \includegraphics[width=0.4\columnwidth]{pic12.eps}\\ text for pic11 & text for pic 12 \\\hline
\includegraphics[width=0.4\columnwidth]{pic11.eps}& \includegraphics[width=0.4\columnwidth]{pic12.eps}\\ text for pic11 & text for pic 12 \\\hline
\end{tabular} \par }
\caption{big figures}
\end{figure}
H.S.Rai