Curricula Vitae / Résumésgeometry in Classicthesis-Styled CV

ModernCV, Friggeri, Plasmati, Classicthesis-CV, and more
Post Reply
jocto
Posts: 3
Joined: Wed Jul 06, 2016 7:08 pm

geometry in Classicthesis-Styled CV

Post by jocto »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

geometry in Classicthesis-Styled CV

Post by Johannes_B »

You can change the page margins using package geometry.

Code: Select all

\usepackage{geometry}
\geometry{margin=1cm}
This has to be done after loading package classicthesis.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
jocto
Posts: 3
Joined: Wed Jul 06, 2016 7:08 pm

Re: geometry in Classicthesis-Styled CV

Post by jocto »

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
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

geometry in Classicthesis-Styled CV

Post by Johannes_B »

Putting

Code: Select all

\usepackage{geometry}
\geometry{outer=12cm,textwidth=6cm}
right before \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.
jocto
Posts: 3
Joined: Wed Jul 06, 2016 7:08 pm

Re: geometry in Classicthesis-Styled CV

Post by jocto »

YES thank you very much, works like a charm.
Post Reply