Theses, Books, Title pages ⇒ How do I change the margin sizes?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I change the margin sizes?
Excellent template! I would love to use it in my thesis, but my university have strict regulations concerning style. I need to somehow change the margins and make it look decent in a single-side mode. Could you help me with that?
Best,
Chris
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How do I change the margin sizes?
There's two ways you can change the margins:
1) Go into
classicthesis.sty
and find the "Textblock size
" block. In there, you can adjust the page width and margin size but you'll have to figure out which values to change and how.2) You can use the geometry package after the
\input{classicthesis-config}
line in ClassicThesis.tex
like this:Code: Select all
\usepackage[left=1in,right=2in,top=1in,bottom=2in]{geometry}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How do I change the margin sizes?

Anne