答案1
您可以使用来设置宽度和高度\rule[<raise>]{<width>}{<height>}
的规则。-可选参数 - 可用于将规则向上或向下移动(负数):<width>
<height>
<raise>
<raise>
\documentclass{article}
\begin{document}
Name: \rule{15em}{.4pt}\ Class: \rule{5em}{.4pt}
Name: \rule[-.2\baselineskip]{15em}{.4pt}\ Class: \rule[-.2\baselineskip]{5em}{.4pt}
\end{document}
也许,如果您希望让规则填满整行,您可以使用多个\hrulefill
s 并实际提高Name:
and Class:
:
\bigskip
\raisebox{.2\baselineskip}{Name:} \hrulefill\hrulefill\hrulefill\
\raisebox{.2\baselineskip}{Class:} \hrulefill
答案2
实现这一目标的众多可能方法之一。
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{center}
\makebox[0.7\linewidth]{\Large{Name :} \hrulefill \ }\makebox[0.25\linewidth]{\Large{Class :} \hrulefill}
\end{center}
\begin{tabularx}{\linewidth}{lXlp{0.1\linewidth}}
~{\Large Name :} & & {\Large Class :} & \\[0.1cm] %<- adjust this vertical distance to fit your needs
\cline{2-2} \cline{4-4}
\end{tabularx}
\end{document}