I want to include a single PDF page according to \includepdf[pages={1},scale=.80,pagecommand={}]{documents/CC_folgeseite-A4.pdf}. How can I make the PDF page to be centered as the text is, meaning shifted to the left or right depending if it is a odd or an even page as it is the case for normal text. Now on both pages the PDFs are centered to the page and not shifted. Is there an automatic option (not needing to find the right parameters for offset)?
\documentclass[a4paper,11pt,twoside]{book}
\usepackage{mwe}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages={1},frame=true,scale=.80,pagecommand={}]{example-image-a4.pdf}
\newpage
\includepdf[pages={1},frame=true,scale=.80,pagecommand={}]{example-image-a4.pdf}
\newpage
\lipsum[1-6]
\end{document}

\centering? – Werner Jan 25 '14 at 19:04\begin{center}\includegraphics[page=1,scale=.8,...]{<file>}\end{center}, which would then center it according to the text block like anything else. – Werner Jan 25 '14 at 19:23\begin{center}\includegraphics[page=1,scale=.8,...]{<file>}\end{center}the figure is in the right lower corner – Tanja Jan 25 '14 at 20:02