[Tex/LaTex] How to create a signature, date page

formatting

I need to create a signature page as shown in the image below in LaTeX. I have no clue on where to start and the commands that I would need. Could someone please help me.

enter image description here

Best Answer

I would create a macro that contains the construction of the name/signature/date setup. Then you can pass parameters to the macro so it can be somewhat dynamic.

In the minimal working example below, the macro \namesigdate[<width>]{<name>} does exactly that. You can pass it <name> which prints the name of the person at the top. This argument is mandatory. The width of the line is set at 5cm (default). If you want to change this, you can use the optional <width> argument that takes any known (La)TeX length:

enter image description here

\documentclass{article}
\newcommand{\namesigdate}[2][5cm]{%
  \begin{tabular}{@{}p{#1}@{}}
    #2 \\[2\normalbaselineskip] \hrule \\[0pt]
    {\small \textit{Signature}} \\[2\normalbaselineskip] \hrule \\[0pt]
    {\small \textit{Date}}
  \end{tabular}
}
\begin{document}

\noindent \namesigdate{Name1} \hfill \namesigdate[3cm]{Name2}

​\end{document}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

I've also formatted the "Signature" and "Date" to be print using \small\itshape, although that can be modified.