I am using the Thesis-template from http://www.latextemplates.com/template/masters-doctoral-thesis.
I have several LaTeX-documents to include in the Appendix. The best solution seems to be compiling each document and using pdfpages to include them. I tried combine, but there were too many conflicts.
The problem is that, although default pdfpages-behaviour should be to center the pdf on the page, it places it in the top-left corner.
Trying to offset it displaces the pages unevenly, as I am using twosided page layout.
I assume this is due to a conflict with the Thesis.cls, that it somehow removes any margins and applies it manually for only its own elements.
Any idea how I could either:
- Use the
offsetto place the document appropriately - Introduce margins for just the pages with the PDF.
Usage:
\includepdfset{pages=-,pagecommand=\thispagestyle{fancy}}
\includepdf[fitpaper=true]{./../Forstudierapport/forstudierapport.pdf}
Result:
As you can see, the header is properly placed, but the PDF is displaced.

Notes:
\usepackage{geometry} removes margins from the entire document.
Env: Using BasicTeX 2011 from MacTeX. I'm on Mac OS X.7.
offset=10mm -14mmas an option to pdfpages may be helpful to you (you have to adjust the values as suitable). – Harish Kumar May 15 '12 at 13:48\includepdf[pages=-,pagecommand={\ifodd{\addtolength{2in}{1.75in}}\fi}]{document.pdf}Any idea what command might add the necessary margins in thepagecommand? – chknapp May 15 '12 at 15:33Thesis.clsusesvmarginto set the page parameters. This package is incompatible withpdfpages, unfortunately. You should try and persuade the authors to usegeometry: it's not a big deal to change the few relevant lines inThesis.cls. – egreg May 15 '12 at 21:13