[Tex/LaTex] Page position with pdfpages

pdfpages

Since I had problems \include-ing some .tex to my project I tried using the pdfpages package and the \includepdf command, but the pages are included displaced and I don't understand the pdfpages documentation (how to use the delta or what logical pages are). My code is simple:

\documentclass[11pt,a4paper,final,twoside,twocolumn,notitlepage]{article}
\usepackage{pdfpages}

\includepdf[pages=-]{file1}
\includepdf[pages=-]{file2}
\includepdf[pages=-]{file3}
\includepdf[pages=-]{file4}

Best Answer

I found the problem: I was changing page layout with \voffset,\hoffset, \headheight, etc and, apparently, pdfpages don't likes that (ridiculous, Isn't it?). Wuth \voffset = 0cm and \hoffset = 0cm it works fine.

Related Question