创建签名行

创建签名行

我想创建如图所示的签名行。您能帮我吗?在此处输入图片描述

答案1

不幸的是,我用了一张桌子,我希望也能帮助到你。

在此处输入图片描述

\documentclass{article}

\begin{document}


\begin{tabular}{@{}p{.5in}p{4in}@{}}
Approved: & \hrulefill \\
& Fats Domino, Ph.D. \\
& Chair of the Department of Nutrition\\
\end{tabular}

\end{document}

答案2

有点人为,但甚至不需要有关表格的知识:

\documentclass{article}

\begin{document}

Approved: \hrulefill

\hspace*{0mm}\phantom{Approved: }Fats Domino, Ph.D.

\hspace*{0mm}\phantom{Approved: }Chair of the Department of Nutrition

\end{document} 

在此处输入图片描述

答案3

这里有六种不同的方法,没有特定的顺序。

在每种情况下都使用不同的方式来获取下划线规则以及签名的左缩进和悬挂。

请注意,我故意避免使用该\hrulefill命令,因为规则位于基线中,但它在下面看起来会更好一些(以允许手写与“Approved:”垂直对齐),因此六个输出中的四个如下所示:

mwe1

也许尖线/虚线看起来也比实线更好,例如\dotfill,但不幸的是(在这种情况下)将点放得太高且分散,因此一种方法是使用自定义\dotsign规则:

MWE3

... 以及其他\dashsign规则:

mwe2

可编译代码:

\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}和等等)。如果您采用我的坏习惯导致您的大脑烧坏、您的计算机爆炸或发生灾难性事件,我概不负责。

相关内容