[Tex/LaTex] How to change the margins and spacing to fit the PhD thesis requirements of University XYZ

marginsthesis

Even-odd pages, inner edge 2.5cm, outer edge 1.5cm top and bottom 2cm. 1.5 spacing between the lines, double between paragraphs, no indent.

A general solution for other requirements would be best.

Best Answer

For the margins use the geometry package. For your particular example use

\usepackage[inner=2.5cm,outer=1.5cm,bottom=2cm]{geometry}

Check the documentation of this package for more details and other options!

For the line spacing use setspace. Again for your example

\usepackage{setspace}
\onehalfspacing % or \doublespacing
Related Question