我想在行上任意位置为整行添加下划线文本。我找到了这个答案,这几乎就是我想要的。我试过了
\titleline{homework \hfill assignment}
答案1
有很多方法可以实现这一点。下面是使用tabular
表示“下划线”的方法:
\documentclass{article}
\newcommand{\titleline}[3]{%
\par\noindent
\begin{tabular}{ @{} p{\linewidth} @{} }
\makebox[0pt][l]{#1}\hfill
\makebox[0pt][c]{#2}\hfill
\makebox[0pt][r]{#3} \\
\hline
\end{tabular}}
\begin{document}
\titleline{Left}{Center}{Right}
\titleline{Very long left}{Medium center}{R}
\end{document}