Graphics, Figures & Tables ⇒ figure array package ?
figure array package ?
My problem with the subfig package is that I have to resize all my pictures myself.
Is there a package out there, where I can make an array of pictures (for example, let's say I wanted a 3x5 array of pictures where each picture comes out the same size even though the files are all different sizes). Is there a package that will automatically resize all my pictures for me in such a way that this 3x5 array of pictures will take up the whole page and nothing more ??
This would be similar to the subplot command in matlab.
Thank you!
xoxo
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
figure array package ?
Code: Select all
\documentclass{article}
\usepackage{subfig,graphicx}
\begin{document}
\begin{figure}
\centering
\subfloat[subcaption]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}\\
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}\\
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}\\
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}\\
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}
\subfloat[]{\includegraphics[width=0.3\textwidth, height=0.15\textheight]{file.eps}}\\
\caption{main caption}
\end{figure}
\end{document}
Re: figure array package ?
That was helpful.
I was actually looking at something automatic like the subplot command in matlab, but this is doing the trick, so I won't complain!
Thanks