单词和行之间的垂直空间

单词和行之间的垂直空间

我想减少“教育”和线之间的垂直距离。该怎么做?

我正在使用以下代码:

\usepackage{tikz}
\newcommand*{\Line}[3][]{\tikz \draw[#1] #2 -- #3;}%
\textbf{Education}
\Line[black, thick]{(0,0)}{(6.99in,0)}%

输出(这是我当前的输出,但我希望“教育”和行之间的垂直空间较小):

在此处输入图片描述

或者我可以用别的东西吗?我只想在简历的“教育”部分下面加一条粗线。

答案1

做同一件事的两种不同方法:

\documentclass{article}
\begin{document}
\noindent\rlap{\textbf{Education}}\rule[-2pt]{\textwidth}{.5pt}

\noindent\underline{\makebox[\textwidth][l]{\textbf{Education}}}
\end{document}

下划线

相关内容