我正在使用 Latex 编写简历,我想减少行\name
与行“地址”之间的间距。该怎么做?这是我的代码:
\documentclass{resume} % Use the custom resume.cls style
\usepackage[left=0.4 in,top=0.4in,right=0.4 in,bottom=0.4in]{geometry} % Document margins
\newcommand{\tab}[1]{\hspace{.2667\textwidth}\rlap{#1}}
\newcommand{\itab}[1]{\hspace{0em}\rlap{#1}}
\name{M\MakeLowercase{y} N\MakeLowercase{ame}} % Your name
\address{address.} % Your address
\address{+XX... \\ [email protected]} % Your phone number and email
\begin{document}
答案1
我用的是中篇专业简历作为 的来源resume.cls
。
名称与“标题”其余部分之间的间隙由 给出\nameskip
,默认为\bigskip
。以下是一些示例更改:
默认 (
\newcommand{\nameskip}{\bigskip}
):\renewcommand{\nameskip}{\medskip}
:\renewcommand{\nameskip}{\smallskip}
:\renewcommand{\nameskip}{}
(没有空间):\renewcommand{\nameskip}{\vspace{5\baselineskip}}
(较大的正向差距):
在 之前添加您的选择\begin{document}
。