如何移动简历模板中的短语?

如何移动简历模板中的短语?

以下是一些 LaTeX 格式的简历模板:http://www.rpi.edu/dept/arc/training/latex/resumes/ 考虑模板编号 9a来源)。我想将姓名移到左边,在中间写上“简历”,在右边放上日期。

我怎样才能做到这一点?

答案1

代替

% Center the name over the entire width of resume:
 \moveleft.5\hoffset\centerline{\large\bf Susan R. Bumpershoot}

使用以下内容作为你的简历标题:

% Name on left, RESUME, date right
\hspace*{-\hoffset}{\large\bfseries\rlap{Susan R. Bumpershoot} \hfill%
RE\'SUM\'E \hfill%
\llap{\today}\par}

\rlap并将\llap名称/日期设置在零宽度框中以确保其RESUME居中。

在此处输入图片描述

您可能还希望调整水平规则的宽度,如我在上面的图片中所做的那样,因为它比文本宽度略宽:

% Name on left, RESUME, date right
\hspace*{-\hoffset}{\large\bfseries\rlap{Susan R. Bumpershoot} \hfill%
R\'ESUM\'E \hfill%
\llap{\today}\par}\kern-\parskip
% Draw a horizontal line the whole width of resume:
\hspace*{-\hoffset}\vbox{\hrule width\dimexpr\textwidth+\hoffset\relax height 1pt}\par\smallskip

作为建议,还有其他(更现代的)简历/CV 模板/包/类。例如,考虑使用moderncv文档类

相关内容