0

Left and right aligned on same lineenter image description here How can I insert a signature dot line on both left and right alignment

1 Answers1

2

You can define a command like

\newcommand\signature[1]{%
  \par\vspace{8ex}\noindent
  \begin{tabular}[t]{@{}l@{}}
    \makebox[15em]{\dotfill}\\
    #1
  \end{tabular}
  \hfill
  \begin{tabular}[t]{@{}c@{}}
    \makebox[15em]{\dotfill}\\
    Date
  \end{tabular}
}

and use it like that:

\documentclass{article}
\newcommand\signature[1]{%
  \par\vspace*{8ex}\noindent
  \begin{tabular}[t]{@{}l@{}}
    \makebox[15em]{\dotfill}\\
    #1
  \end{tabular}
  \hfill
  \begin{tabular}[t]{@{}c@{}}
    \makebox[15em]{\dotfill}\\
    Date
  \end{tabular}
}
\usepackage{blindtext} % only needed for the dummy text, remove it
\begin{document}
\blindtext % generates the dummy text, remove it
% Put the text to be signed here.

\signature{Mr~Joe Miller\\Seminar Supervisor}
\signature{Ms~Amy Smith\\Head of Department}
\signature{Ms~Betty Taylor\\External Examiner}
\end{document}

enter image description here

gernot
  • 49,614