如何在文本前创建长下划线?

如何在文本前创建长下划线?

可能重复:
LaTeX 中的长下划线

示例输出如下:

__________ hello

__________ hello

答案1

您可以用多种方式编写它,但最简单的\rule{<len>}{<width>} hello方法可能是指定<len><width>。通常,<width>0.4pt

enter image description here

\documentclass{article}
\begin{document}
\rule{10em}{0.4pt} hello \par
\rule{50pt}{1pt} hello
\end{document}

在更一般的设置中,请参见LaTeX 中的长下划线

相关内容