我正在尝试使用以下代码生成 LaTeX 文档:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{xcolor} % For \textcolor
\makeatletter % For \@height and \@z@
\begin{document}
{\Large Hello}
\textcolor{blue}{\textit{World!}} \leaders\hrule\@height1.0pt\hfill\kern\z@
\end{document}
这样就生成了一个文档,其中的水平线并不像我希望的那样位于“World!”下方。相反,水平线出现在其旁边。
我想要调整设置,让水平线出现在“World!”文本下方,如下图所示:
我怎样才能做到这一点?