在 res.cls 乳胶简历中减少列之间的 space

Reduce space between columns in res.cls latex resume

如何减少 res.cls 中两列之间的 space?

我现在的 latex 文档中有以下代码

这是主要的 Latex 文件。

  %---
%   PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%---

\documentclass[margin, 10pt]{res} % Use the res.cls style, the font size can be changed to 11pt or 12pt here
\usepackage{hyperref}

\usepackage{helvet} % Default font is the helvetica postscript font

\usepackage{enumitem}

\setlength{\sectionwidth}{1.8in}
\setlength{\textwidth}{5.2in} % Text width of the document

\newcommand{\ts}{\textsuperscript}

\begin{document}

%----
%   NAME AND ADDRESS SECTION
%-----

\moveleft.5\hoffset\centerline{{\LARGE {{Google}}}} % Name at the top
 \moveleft.5\hoffset\centerline{\href{https://google.com}{https://google.com}}

%------

\begin{resume}

%----
%   EDUCATION SECTION
%----
\section{{\sc{Education}}}

{\textbf{Institute Name} }  \hfill Jul. 2018 - Jul. 2018 \
Undergraduate \hfill USA

\begin{itemize} [leftmargin=0.5cm]
    \item GPA of 4.0 / 4.0
\end{itemize} 

我正在使用 res.cls 文件进行样式设置,与上述文件位于同一目录中。找到我这里用的res.clshttps://drive.google.com/file/d/1JhjCG846CW_21DP3XQdv2u4o_0LLh88i/view?usp=sharing

你有

\setlength{\sectionwidth}{1.8in}

之后添加以下长度变化组合:

\addtolength{\sectionwidth}{-0.5in}
\addtolength{\oddsidemargin}{-0.5in}

\oddsidemargin 中的任何调整都会将章节标题进一步推到左边距,因此进行双重调整,使其保持在当前位置。更改长度以满足您的需要。