[Tex/LaTex] Getting classicthesis to fit within required margins

classicthesismarginsthesis

Our university's formatting requirements for dissertations require us to use the following margins (A4 format):

  • left: 4.3 cm
  • right: 4.3 cm
  • top: 5 cm
  • bottom: 4.7 cm

These pages in A4 format will then be cropped again to fit into a 17cm x 24 cm format with 2 cm margins on the left, right, top and bottom side.

I got this to work by adding the following to ClassicThesis.tex:

\usepackage[left=4.3cm,right=4.3cm,top=5cm,bottom=4.7cm,includehead,includefoot]{geometry}

I also used the linedheaders option to get the chapter number to fit nicely within the margin.

However, I was wondering if there's a better way to do this? For one, given these margins, the overal font size seems a bit big now.

Thanks!

Best Answer

What exactly is the problem? This seem to work fine.

\documentclass[a4paper]{report}
\usepackage{classicthesis}
\usepackage[left=4.3cm,right=4.3cm,top=5cm,bottom=4.7cm,includehead,includefoot]{geometry}
\usepackage{lipsum}

\begin{document}
\title{Lorem ipsum}
\author{Patrick Happel}
\maketitle

\chapter{Part 1}

\lipsum

\end{document}