My graphing program (R) can plot a set of figures out, each on a separate page of the same pdf. Is there a way to convert this into a single 4x4 or 8x2 figure in LaTeX? There are alternatives, but this would be preferable.
Asked
Active
Viewed 469 times
7
1 Answers
11
It is very easy. Please use pdfpages.sty and click here for its manual.
Sample Output

Code Snippet Sample
I used a pdf file downloaded from here and then renamed it as movies.pdf.
\documentclass{article}
\usepackage[a4paper,margin=1cm]{geometry}
\usepackage{pdfpages}
\begin{document}
\includepdf[%
landscape=true,%
pages={1-16},%Include pages from 1 to 16.
nup=2x3,%If landscape=false then it defines columns x rows. Otherwise it defines rows by columns.
]{movies.pdf}%Pdf file name with or without extension.
\end{document}
Display Name
- 46,933
8x2then each pdf becomes so small and you will need a magnifying glass to read the printed version. I recommend you to use2x1or1x2or2x2. More than this will be hard to read. – Display Name Dec 29 '10 at 03:29