0

在这张图片中,我在创建简历时显示了 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

4

1 回答 1

0

\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}
于 2022-01-21T04:12:53.400 回答