I am using
\documentclass[a4paper,12pt,openany,leqno,footinclude=true]{memoir}
and want some signature lines that have
dotted lines; plus
a designation below the line
I have:
\noindent\begin{tabular}{ll}
\makebox[2.5in]{\hrulefill} & \makebox[2.5in]{\hrulefill}\\
Ronaldo & Date\\[8ex]% adds space between the two sets of signatures
\makebox[2.5in]{\hrulefill} & \makebox[2.5in]{\hrulefill}\\
Dr. Fernando Torres \begin{center}Assistant Professor Discipline Of Computer Science School Of Engineering La Liga \end{center} \newline & Date\\
\end{tabular}
The content of "Assistant Professor ..." does not left align below the signature line and I can't use a \newline too.
I want that content to either be
left aligned; or
centre aligned (I tried using the
centerenvironment, but it didn't work).
I guess centre aligned designation below the signature line would be great.
Here is a minimal example:
\documentclass{article}
\begin{document}
\noindent\begin{tabular}{ll}
\makebox[2.5in]{\hrulefill} & \makebox[2.5in]{\hrulefill}\\
User Representative & Date\\[8ex]% adds space between the two sets of signatures
\makebox[2.5in]{\hrulefill} & \makebox[2.5in]{\hrulefill}\\
Program Manager & Date\\
\end{tabular}
\end{document}

