我怎样才能缩小这些差距?

我怎样才能缩小这些差距?

在此处输入图片描述

我正在写我的简历,但有一个问题。

在第一张图片中,不同部分之间有空格。

(在联络与电话之间,在教育与首尔之间~~,....)

因此,我想缩小这些差距。

我怎么解决这个问题??

\documentclass[margin,line,letterpaper,11pt]{res}

\usepackage{times}

\usepackage{enumitem}


\setlength{\topmargin}{0.1in} \setlength{\textheight}{11in}

\setlength{\textwidth}{6in} \setlength{\oddsidemargin}{-.55in}

\setlength{\evensidemargin}{-.55in}

\oddsidemargin -.25in \evensidemargin -.49in \textwidth=5.4in

\newcommand{\ts}{\textsuperscript}

\newcommand{\block}[1]{
    \vspace{.1in} \section{\sc #1}
}

\newcommand{\subblock}[1]{
    \vspace{-.2in}\subsection*{#1}
}

\newenvironment{enum}{
    \begin{enumerate}[leftmargin=5mm]
    \setlength{\itemsep}{1mm}
}{
    \end{enumerate}
}


\begin{document}


\name{\sc \LARGE  } 

\begin{resume}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\block{Contact}
Phone:  \\
Email: 
\\\vspace*{-6mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\block{Education}

University : \\

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\block{Other\\ Activities}

Club : \\


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\end{resume}
\end{document}

答案1

res,此宽度由 给出\sectionwidth。在margin文档类选项下,默认宽度为1.3in。您可以使用以下方法调整此宽度以满足您的需求

\newsectionwidth{<len>}

其中<len>是每个“部分”的新所需宽度。例如,尝试宽度1in.7\sectionwidth(现有 的 的 70% \sectionwidth)。

评论中提到的其他事项:

相关内容