I am writing my thesis for which we have specific requirements regarding the paper size. This is what I have at the beginning of my thesis file:
documentclass[a4paper]{book}
\textheight=175mm
\textwidth=120mm
\oddsidemargin=-1in
\addtolength{\oddsidemargin}{22mm}
\evensidemargin=-1in
\addtolength{\evensidemargin}{68mm}
New chapters start on the right page if you look at a two-page view. The pages "lean in toward the middle" with the margins on the outer sides and down below. I have no problems with this when using ordinary TeX-input, but when I try to include a pdf I cannot force it to obey the margins. This is how I do it now:
\cleardoublepage
\includepdf[pages=-,templatesize={120mm}{175mm},noautoscale=true]{myfile.pdf}
I tried using the offset option but I could not put the pdf pages where I wanted them. Their position should also alternate depending on odd or even page number. Any help is appreaciated!
