如何减少乳胶简历上姓名和地址之间的空格?

如何减少乳胶简历上姓名和地址之间的空格?

我正在使用 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}

相关内容