General ⇒ set left margin
-
- Posts: 5
- Joined: Sun Aug 17, 2008 3:12 pm
set left margin
i am just starting to get familiar with lyx and i want to write my CV with it!
the problem is, that the left margin is set so huge so that there is not a lot of splace left to put all the information (i am using a table)
is there a way to set the leftmargin myself with latex? or is there any option in lyx??
thanks for your help!
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
set left margin
The geometry package provides an easy way to customise the page layout. For example, if you want to set each margin to 1,5cm without header space, all you need is
Code: Select all
\usepackage[margin=1.5cm,nohead]{geometry}
Since you are writing a CV you could be interested in the modernCV document class.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: set left margin
with LyX you could open the Document Menu and choose Settings. There you will find the item Page Margins and you could change the margins there.
Stefan
-
- Posts: 5
- Joined: Sun Aug 17, 2008 3:12 pm
Re: set left margin
but thanks to both!!