首页 > 解决方案 > 如何减少 Overleaf LaTeX 中两个项目符号行之间的间隙/间距?

问题描述

在这张图片中,我在创建简历时显示了 Overleaf LaTeX 中的要点。如何减少这些要点线之间的差距?我当前的代码如下所示:

\csection{COURSEWORK}{\small
    \begin{itemize}
        % item 1 %
        \item \frcontent{Data Structures and Algorithms}{}{}{}
        % item 2 %
        \item \frcontent{Design and Analysis of Algorithms}{}{}{}
        % item 3 %
        \item \frcontent{Database Management Systems}{}{}{}
        % item 3 %
        \item \frcontent{Object Oriented Programming}{}{}{}
    \end{itemize}
}

输出图片:https ://i.stack.imgur.com/QKkHT.jpg

标签: latexoverleaf

解决方案


\frcontent这里不需要。您可以执行以下操作:

\csection{COURSEWORK}{\small
    \begin{itemize}
        % item 1 %
        \item Data Structures and Algorithms
        % item 2 %
        \item Design and Analysis of Algorithms
        % item 3 %
        \item Database Management Systems
        % item 3 %
        \item Object Oriented Programming
    \end{itemize}
}

输出图像

注意:您可以使用\textbf来加粗。例如:

\item \textbf{Data Structures and Algorithms}

推荐阅读