答案1
答案2
答案3
这里有六种不同的方法,没有特定的顺序。
在每种情况下都使用不同的方式来获取下划线规则以及签名的左缩进和悬挂。
请注意,我故意避免使用该\hrulefill
命令,因为规则位于基线中,但它在下面看起来会更好一些(以允许手写与“Approved:”垂直对齐),因此六个输出中的四个如下所示:
也许尖线/虚线看起来也比实线更好,例如\dotfill
,但不幸的是(在这种情况下)将点放得太高且分散,因此一种方法是使用自定义\dotsign
规则:
... 以及其他\dashsign
规则:
可编译代码:
\documentclass{article}
\usepackage[tmargin=1cm]{geometry}
\parindent0pt
\parskip3ex
\pagestyle{empty}
\usepackage{tabto,ulem,booktabs}
\usepackage{textcomp}
\TabPositions{.38\linewidth,.5\linewidth}
\def\dotsign{\xleaders\hbox to .2em{\d{}}\hfill\d{}}
\def\dashsign{\xleaders\hbox to .5em{\_}\hfill\_}
\def\dummytext{\bigskip\dotfill and this text is the very
inconclusive end of the very long report.\par~\par}
\begin{document}
\dummytext
\makebox[.5\linewidth][r]{Approved: }\dotsign\smallskip\\
\hspace*{.5\linewidth}Fats Domino, Ph.D.\\
\hspace*{.5\linewidth}Chair of the Department of Nutrition
\dummytext
\tab\hfil Approved:\vspace{2pt}\tab\dashsign\\
\tab\tab\tab Fats Domino, Ph.D.
\tab\tab\tab Chair of the Department of Nutrition
\dummytext
\hfill
Approved: \parbox[t]{.5\linewidth}{\rule[-3pt]{\linewidth}{.4pt}\par\smallskip
Fats Domino, Ph.D.\par
Chair of the Department of Nutrition}
\dummytext
{\parindent.38\linewidth\hangindent.5\linewidth\hangafter1
Approved: \uline{\hfill}\\[3pt]
Fats Domino, Ph.D.\\
Chair of the Department of Nutrition\par}
\dummytext
\tabcolsep0pt
\hfill\begin{tabular}{lp{.5\linewidth}@{}}
Approved:~ & \\[-3pt]\cmidrule{2-2}
& Fats Domino, Ph.D.\\
& Chair of the Department of Nutrition\\
\end{tabular}
\dummytext
\hspace{.38\linewidth}Approved: \vbox to 0pt{\uline{\hspace{.5\linewidth}}\\[3pt]
Fats Domino, Ph.D.\\
Chair of the Department of Nutrition}%
\vspace{3\baselineskip}% only you type something below
\end{document}
免责声明:我懒得设置 LaTeX 语法的长度(即,我使用了\parindent0pt
代替
\setlenght{\parinden}{0pt}
和等等)。如果您采用我的坏习惯导致您的大脑烧坏、您的计算机爆炸或发生灾难性事件,我概不负责。