I have a big image in PDF and I use software to split that PDF into 5 equal pieces. I am using pdflatex to insert each pdf in a separate page with \includegraphics by the same scale factor. I need to print each page separately so I can align and concatenate all the printouts in a precise way. I choose the scale such that they are maximized. However, if I enlarge the images, they will be shifted to the side and bottom too. How can I increase all images to the maximum size (in the same scale) and centralize all of them?
\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\pagestyle{empty}
\begin{figure}[c]
\centerline{\includegraphics[scale=1.8]{imga.pdf}}
\end{figure}
\newpage
\begin{figure}[c]
\centerline{\includegraphics[scale=1.8]{imgb.pdf}}
\end{figure}
\newpage
\begin{figure}[c]
\centerline{\includegraphics[scale=1.8]{imgc.pdf}}
\end{figure}
\newpage
\begin{figure}[c]
\centerline{\includegraphics[scale=1.8]{imgd.pdf}}
\end{figure}
\newpage
\begin{figure}[c]
\centerline{\includegraphics[scale=1.8]{imge.pdf}}
\end{figure}
\end{document}
I think the reason why the above script doesn't centralize the figures is there are some white margins in the first two cut figures. Since I scale up all images in the same way, the white part is also magnified so the image is shifted down and right to the sides. Is that any way to absolutely translate the image (so the white part will be moved out of the edge)?
figureenvironment does not accept a[c]placement specifier. You might be interested in[p]to place the image on a page-of-floats. Consider reading How to influence the position of float environments like figure and table in LaTeX?. – Werner Nov 21 '12 at 03:07\hspace{<len>}, while vertical movements should be possible using\raisebox{<len>}{<stuff>}. Regardless, it's still not 100% clear what is going on here... – Werner Nov 21 '12 at 03:24