如何更改基于 res 的简历的左边距

如何更改基于 res 的简历的左边距

我有兴趣使用这份简历. 如何更改各节段落的左边距?

例如,在“JOB OBJECTIVE”部分,我希望“A summer...”稍微向左移动,并且当前位于“OBJECTIVE”字母“B”下方的字母“A”移动到“OBJECTIVE”字母“O”下方。

这是一个最小的工作示例:

\documentclass{res} 

\begin{document} 
\name{HAROLD C. GOODBETTER\\[12pt]}

\address{\bf  PRESENT ADDRESS\\193 5th Avenue\\Troy, NY 12180\\(518) 274-1234}
\address{\bf PERMANENT ADDRESS \\ 110 Brant Avenue \\  Upper Saddle
         River,   NJ 07458 \\  (201) 555-9509}

\begin{resume}
\section{JOB OBJECTIVE}          
    A summer position that will use my accounting and computer
    skills.          

\section{EDUCATION}          
    Rensselaer Polytechnic Institute, Troy, NY\\        
    Bachelor of Science, Management, May 1990\\       
    Concentration in Management Systems\\   
    Minors in Computer Science and Economics\\        
    G.P.A. 3.3/4.0 
\end{resume}
\end{document}

答案1

您需要更改\sectionwidth。该类res为该任务提供了一个自己的命令,\newsectionwidth它负责处理依赖于的所有其他长度\sectionwidth

\documentclass{res} 

\newsectionwidth{27.5pt}

\begin{document} 
\name{HAROLD C. GOODBETTER\\[12pt]}

\address{\bfseries  PRESENT ADDRESS\\193 5th Avenue\\Troy, NY 12180\\(518) 274-1234}
\address{\bfseries PERMANENT ADDRESS \\ 110 Brant Avenue \\  Upper Saddle
         River,   NJ 07458 \\  (201) 555-9509}

\begin{resume}
\section{JOB OBJECTIVE}          
    A summer position that will use my accounting and computer
    skills.          

\section{EDUCATION}          
    Rensselaer Polytechnic Institute, Troy, NY\\        
    Bachelor of Science, Management, May 1990\\       
    Concentration in Management Systems\\   
    Minors in Computer Science and Economics\\        
    G.P.A. 3.3/4.0 
\end{resume}
\end{document}

输出

相关内容