I'm about to submit my thesis and I just noticed the first pages have different sidemargins to the rest of the text :(. They are supposed to be 2.5cm and they apper of ~ 1in.
I tracked the problem to the different environments I declare for each of these pages but can't figure out how to change them back [I have looked around before asking but haven't find the solution], here's a brief example of one of the environments:
\newenvironment{myenvironment} {\thispagestyle{plain}
\begin{center}
\vspace{0cm}
{\Large \bfseries TITLE}
\end{center}
\vspace{0.5cm}
\begin{quote}}
{\end{quote}}
For some reason the above code overrides the margin settings of the rest of the document. I have tried to declare them inside the environment using \setlength and also the geometry package (\newgeometry{top=X, bottom=Y}) to no avail.
This is my first big LaTeX project so I'm probably missing something here. Thanks!