Hello,
I like your template the most so I would like to use it, but also, I would like to change one thing, and that is geometry. In my opinion, there is too big space to the right and left, so what should I do to have less free space and more space for writing text?
Thanks for reply
Curricula Vitae / Résumés ⇒ geometry in Classicthesis-Styled CV
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
geometry in Classicthesis-Styled CV
You can change the page margins using package geometry.
This has to be done after loading package classicthesis.
Code: Select all
\usepackage{geometry}
\geometry{margin=1cm}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: geometry in Classicthesis-Styled CV
I tried that \usepackage{geometry} but doesnt matter what numbers I use, anything happens. So i think, something overrides this command.
I tried some combinations like:
\usepackage[top=1in, bottom=1.25in, left=1.25in, right=1.25in]{geometry}
or
\usepackage[margin=1cm]{geometry}
or
\usepackage{geometry}
\geometry{margin=1cm}
but any change. I dont know why
I tried some combinations like:
\usepackage[top=1in, bottom=1.25in, left=1.25in, right=1.25in]{geometry}
or
\usepackage[margin=1cm]{geometry}
or
\usepackage{geometry}
\geometry{margin=1cm}
but any change. I dont know why
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
geometry in Classicthesis-Styled CV
Putting
right before
If it doesn't for you, please share a minimal working example.
Code: Select all
\usepackage{geometry}
\geometry{outer=12cm,textwidth=6cm}
\begin{document}
(that is after loading classicthesis) works fine.If it doesn't for you, please share a minimal working example.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: geometry in Classicthesis-Styled CV
YES thank you very much, works like a charm.