虚线签名

虚线签名

我很好奇如何生成这种带虚线的签名。你能帮我吗?

在此处输入图片描述

答案1

由于没有面向领导者的“官方” LaTeX 界面,因此我们需要一些低级编程。

\documentclass{article}

\newcommand{\signaturespace}[2]{%
  % #1 = width of the dotted line
  % #2 = legend
  \begingroup
  \renewcommand{\arraystretch}{0}%
  \begin{tabular}[t]{cc}
  \hspace*{0pt}%
  \cleaders\hbox{\kern.1pt.\kern.1pt}\hskip#1\relax
  \hspace*{0pt}%
  \\[2pt]
  \scriptsize#2
  \end{tabular}%
  \endgroup
}

\begin{document}

\signaturespace{5cm}{(czytelny podpis studenta)}

\end{document}

在此处输入图片描述

答案2

tikz 来救援

在此处输入图片描述

\documentclass{article}


\usepackage{tikz}
\newcommand{\sig}[1]{\begin{tikzpicture} \draw[ultra thick,densely dotted] (0,0)--(4,0) (2,0) node[below]{#1};  \end{tikzpicture}}

\begin{document}
\sig{your signature}

\end{document}

相关内容