Text FormattingColumn Width in Template for CV

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

Column Width in Template for CV

Post by marcdein »

I am trying to use a CV template, but I would like to increase the width of the leftmost column, the one starting with "Lehman Brothers" in italics (see the attached code and PDF output). How can I do that? I'd be very grateful for any help.
Attachments
cv_8.tex
(9.96 KiB) Downloaded 426 times
cv_8.pdf
(63.29 KiB) Downloaded 462 times
Last edited by localghost on Sun Jun 09, 2013 8:10 pm, edited 1 time in total.
Reason: Complete Files are better uploaded as attachment to the forum server instead of being posted as code.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

Column Width in Template for CV

Post by tom »

Hey,

From the code, you can see the "company" is typeset in the outer margin. So what you would have to do is change the page layout. The package classicthesis sets the layout and you can modify it using geometry. Make sure you load the package after classicthesis. I picked some random values that you might have to adapt for your CV. showframe is pretty handy for testing purposes.

Code: Select all

\usepackage{showframe} % makes margins visible
\usepackage[top=33pt, bottom=60pt, left=150pt, right=100pt]{geometry}
Post Reply