I am trying to use the pdfpages package to include a PDF file called "supp.pdf". My code is:
\documentclass[10pt,prl,aps,showpacs,twocolumn,unsortedaddress]{revtex4-1}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{commath}
\usepackage{graphicx,bm}
\usepackage{epsfig}
\usepackage{verbatim}
\usepackage[usenames]{color}
\usepackage{pdfpages}
\begin{document}
*Text*
\newpage
\newpage
\includepdf[pages=-,scale=1]{supp.pdf}
\end{document}
But if I compile, the first two pages of supp.pdf overlap in the total file, that is, the two pages are printed on one page.
Does anyone have an idea how to solve this?
pdflatex, right? – yo' Feb 11 '14 at 19:59hyperrefpackage last ? (It's currently being loaded first.) You probably don't need to load theepsfigpackage, and thegraphicxpackage need only be loaded once, by the way. – Mico Feb 11 '14 at 20:13scale=1which suggests they don't match the pagesize of the document you are compiling. Also, how many pages are there? Do later pages work OK? Does the same thing happen with another PDF e.g.l2tabuen.pdffor example? (Don't ask me why that one. No idea.) – cfr Feb 12 '14 at 03:27