更紧密的下划线

更紧密的下划线

我目前正在使用\underline{...}下划线文本。

但是,我希望下划线更靠近字母(目前,字母和下划线之间的空白太多)。有没有简单的方法可以做到这一点?

答案1

\underline{<stuff>}为包含 的框添加下划线<stuff>。但是,这也意味着<stuff>带有下降部分的框会将下划线推得更低。\smash{<stuff>}从 中删除任何深度(和高度)<stuff>,从而允许下划线具有常规的非下降部分深度:

\underline{\smash{<stuff>}}

或者,soul包裹提供下划线功能。这是一个简单示例:

在此处输入图片描述

\documentclass{article}
\setlength{\parindent}{0pt}% Just for this example
\usepackage{soul}% http://ctan.org/pkg/soul
\begin{document}
The quick brown fox jumped over the lazy dog. \par
\underline{The quick brown fox jumped over the lazy dog.} \par
\underline{\smash{The quick brown fox jumped over the lazy dog.}}

\setul{5pt}{.4pt}% 5pt below contents
\ul{The quick brown fox jumped over the lazy dog.} \par
\setul{1pt}{.4pt}% 1pt below contents
\ul{The quick brown fox jumped over the lazy dog.} \par
\end{document}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

查看soul包装文档(部分4 下划线,第 11 页起)了解有关设置和下划线控制的更多信息。

相关内容