答案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}