如何在每页的底部创建用于签名的文本字段?

如何在每页的底部创建用于签名的文本字段?

我需要在每页底部创建用于签名的文本字段。像这样(我在 Adob​​e Illustrator 中绘制): 示例文本字段

我怎样才能做到这一点?

纸张尺寸:A4。

答案1

这可以通过多种方式实现(建议参考):

在此处输入图片描述

\documentclass{article}

\usepackage{geometry}
\geometry{
  paper = a4paper,
  margin = 1in
}
\usepackage{lipsum}

\newcommand{\signature}[2][8em]{%
  \begin{tabular}[t]{ p{#1} p{#1} }
    \strut\raggedleft
    \raisebox{-.5ex}[0pt][0pt]{\bfseries #2} & \\
    \cline{2-2}
    & \centering\scriptsize\itshape (signature)
  \end{tabular}
}

\begin{document}

\lipsum[1]

\vspace{5\baselineskip}

\mbox{}\hfill
\signature{James Bond}\hfill
\signature{Austin Powers}\hfill
\mbox{}

\end{document}

答案2

我做了一些事情:

\documentclass[a4paper,14pt,oneside,openany]{memoir}

\usepackage{lipsum}
\usepackage{background}

\SetBgContents{
\vspace*{\fill}
{\def\arraystretch{0.6}\tabcolsep=3pt
\noindent\begin{tabular}{ccccc}
\textbf{Tom Brand} & \makebox[1.5in]{\hrulefill} & \makebox[1.5in] & \textbf{Ryan Cruise} & \makebox[1.5in]{\hrulefill}\\
& \small \textit{(signature)} & & & \small \textit{(signature)} 
\end{tabular}
}
}

\SetBgScale{1}
\SetBgAngle{0}
\SetBgOpacity{1}
\SetBgColor{black}
\SetBgPosition{current page.south}
\SetBgHshift{0.8cm}
\SetBgVshift{1.3cm}

\begin{document}

\lipsum[1]

\end{document}

签名

相关内容