我需要增加每个条目信息部分的空间,这样页面右侧的边距就不会太大。例如,第一个工作经历条目是雷曼兄弟,作者提供了一些关于他在该公司所做工作的信息。我想增加这些条目在整个文档中占用的水平空间,这样页面右侧就不会有太多空白。
我假设代码位于文档前言的某个地方,如下所示:
\documentclass{scrartcl}
\reversemarginpar % Move the margin to the left of the page
\newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}} % New command defining the margin text style
\usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
\usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document
\renewcommand{\cvheadingfont}{\LARGE\color{Maroon}} % Font color of your name at the top
\usepackage{hyperref} % Required for adding links and customizing them
\hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors
\newlength{\datebox}\settowidth{\datebox}{Spring 2011} % Set the width of the date box in each block
\newcommand{\NewEntry}[3]{\noindent\hangindent=2em\hangafter=0\parbox{\datebox}{\small \textit{#1}}\hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here: #1 is the left margin, #2 is the italic date field and #3 is the position/employer/location field
\vspace{0.5em}} % Add some white space after each new entry
\newcommand{\Description}[1]{\hangindent=2em\hangafter=0\noindent\raggedright\footnotesize{#1}\par\normalsize\vspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here
我正在使用这个模板:http://www.latextemplates.com/template/classicthesis-styled-cv
我必须编辑或添加什么才能缩小右边距,并让每个条目中的文本填满从边距中占用的空间?我希望我的问题有意义。本质上,我需要使文档中的所有段落更宽。
答案1
我有一个解决方法给你,但是首先。
1)别人建立的模板总是有问题的。
2) 当您在模板中进行更改时,通常会产生意想不到的、令人惊讶的、而且往往很糟糕的结果。
3)我个人建议您使用回忆录类来构建自己的简历文档,它具有出色的文档。
现在针对这个具体问题,请执行以下操作。
将此行放在紧接于以下\begin{document}
行之前
\usepackage[left=1.5in,right=.5in,top=1in,bottom=1in]{geometry}
您可以根据您的具体要求调整四个边距。
结果如下:
答案2
Classicthesis 使用 areaset,最好通过将默认宽度从 336pt 增加到
\areaset[current]{336pt}{750pt}
\setlength{\marginparwidth}{7em}
调用 classicthesis 包之后。