7

enter image description here

In my LaTeX report I want to include a dotted signature line and my name below that line. As in the image. Can someone help me with the LaTeX code for that?

Werner
  • 603,163
user54172
  • 113

1 Answers1

6

This should get you started.

\documentclass{article}
\newcommand{\sign}[1]{%      
  \begin{tabular}[t]{@{}l@{}}
  \makebox[1.5in]{\dotfill}\\
  \strut#1\strut
  \end{tabular}%
}
\newcommand{\Date}{%
  \begin{tabular}[t]{@{}p{1.5in}@{}}
  \\[-2ex]
  \strut Date: \dotfill\strut
  \end{tabular}%
}


\begin{document}
  \noindent
  \begin{minipage}[t]{0.4\linewidth}
    \raggedright
    \sign{Supervisor}
    \par
    Mr.\,L. L. Silva\par
    Department of Computing and Information Systems, \par
    Faculty of Applied Sciences, \par
    University of Moratuwa
  \end{minipage}%
  \hfill
  \begin{minipage}[t]{0.4\linewidth}
    \sign{Signature of the supervisor}
    \Date
  \end{minipage}


  \vspace{1cm}
  \noindent
  \begin{minipage}[t]{0.4\linewidth}
    \raggedright
    \sign{Head of the Department}
    \par
    Mr.\,M. N. Dias\par
    Department of Computing and Information Systems, \par
    Faculty of Applied Sciences, \par
    University of Moratuwa
  \end{minipage}%
  \hfill
  \begin{minipage}[t]{0.4\linewidth}
    \sign{Signature of Head}
    \Date
  \end{minipage}
\end{document}

enter image description here