修改 res 类以减少空白

修改 res 类以减少空白

我目前正在创建简历。res我在网上找到的模板似乎有用。但我遇到了一些麻烦。

下面的图片突出显示了我想要做的事情。

我的图像

所以基本上,我想将教育信息移到教育标题下方。这样可以让行看起来更长,看起来不那么拥挤。此外,我不确定这是否值得再问一个问题,但\begin{itemize}在我的“在线课程”中,一个简单的信息看起来非常不合时宜。

以下是 MW 代码:

% LaTeX resume using res.cls
\documentclass[line,margin,11pt]{res} 
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font 


\usepackage[inline]{enumitem}

\newcommand{\sbt}{\,\begin{picture}(-1,1)(-1,-3)\circle*{3}\end{picture}\ }
\begin{document}

\name{my  name}
 % \address used twice to have two lines of address
\address{address}
\address{ phone , email}

\begin{resume}

\section{OBJECTIVE} A position in the field of computers with special 
                interests in business applications programming, 
                information processing, and management systems. 


\section{EDUCATION} {\sl Master of Science,} Applied Mathematics (in progress) \\ 
                            {\bf York University, Toronto, ON}  \\
                            \underline{Research} Modelling transcription factor binding sites using combinatorial histone code as a background model. \\
                            \underline{Relevent Courses} \\
                            \begin{itemize*}

                            \item[\sbt]     Functional Analysis (A) 
                            \item[\sbt]  Computational Methods in Mathematical Biology (A+) 
                            \item[\sbt]  Practicum in Applied Mathematics (A+) 
                            \item[\sbt]  Probability Models (B+) 
                            \item[\sbt]  Partial Differential Equations (B+) 
                            \item[\sbt]  Mathematical Modelling (B)  
                            \item[\sbt]  Measure Theory (Audit)
                            \item[\sbt]  Probability Theory (Audit) 
                            \end{itemize*} \\ \\
{\sl Bachelor of Science,} Applied Mathematics \\
                % \sl will be bold italic in New Century Schoolbook (or
            % any postscript font) and just slanted in
        % Computer Modern (default) font
                {\bf York University, Toronto, ON} \\
                \underline{Concentration}: Numerical Analysis and Differential Mathematics. \\
                 \\
        {\sl Diploma,} Computer Science \\ 
                % \sl will be bold italic in New Century Schoolbook (or
            % any postscript font) and just slanted in
        % Computer Modern (default) font
                {\bf Seneca College, Toronto, ON} \\
                \underline{Languages} Visual Basic, Python, C, C++, .NET, SQL, HTML and DBA.  \\
                Proficient in Mathematical programming using MATLAB, R and SAS/SPSS.

                {\sl Massive open online courses} \\
                \begin{itemize}
                \item Bioinformatics: Introduction and Methods {\sl Peking University, China} \\
                \item Bioinformatics: Life Sciences on your Computer  {\sl Johns Hopkins University, USA} \\
                \item Modelling and Simulation using MATLAB (certificate recieved) {\sl Prof Dr. -Ing Georg Fries} 
                \end{itemize}

我发现\sbt有我的水平列表。所以请记住这一点。因为它确实对“环境”做了“一些事情”。

答案1

不要用作\\换行符或段落分隔符,尤其来分隔\items。元素之间只需留一个空行即可。

在此处输入图片描述

% LaTeX resume using res.cls
\documentclass[line,margin]{res} 

\usepackage[inline]{enumitem}

\begin{document}

\name{my name}
 % \address used twice to have two lines of address
\address{address}
\address{phone, email}

\begin{resume}

\section{OBJECTIVE}
  A position in the field of computers with special 
  interests in business applications programming, 
  information processing, and management systems. 

\section{EDUCATION}

  {\slshape Master of Science,} Applied Mathematics (in progress)

  {\bfseries York University, Toronto, ON}

  \underline{Research} Modelling transcription factor binding sites using combinatorial histone code as a background model.

  \underline{Relevent Courses}

  \begin{itemize*}[label=\textbullet]
    \item Functional Analysis (A) 
    \item Computational Methods in Mathematical Biology (A+) 
    \item Practicum in Applied Mathematics (A+) 
    \item Probability Models (B+) 
    \item Partial Differential Equations (B+) 
    \item Mathematical Modelling (B)  
    \item Measure Theory (Audit)
    \item Probability Theory (Audit) 
  \end{itemize*}

  {\slshape Bachelor of Science,} Applied Mathematics

  {\bfseries York University, Toronto, ON}

  \underline{Concentration}: Numerical Analysis and Differential Mathematics.

  {\slshape Diploma,} Computer Science

  {\bfseries Seneca College, Toronto, ON}

  \underline{Languages} Visual Basic, Python, C, C++, .NET, SQL, HTML and DBA.

  Proficient in Mathematical programming using MATLAB, R and SAS/SPSS.

  {\slshape Massive open online courses}

  \begin{itemize}
    \item Bioinformatics: Introduction and Methods {\slshape Peking University, China}
    \item Bioinformatics: Life Sciences on your Computer  {\slshape Johns Hopkins University, USA}
    \item Modelling and Simulation using MATLAB (certificate recieved) {\slshape Prof Dr.~-Ing Georg Fries} 
  \end{itemize}

\end{resume}

\end{document}

相关内容