[Tex/LaTex] Insert a picture of the signature right under the name to the right

graphicshorizontal alignment

I have the following document as follows. this

I need two adjustments.

  1. I need signature in print and signature as a picture on the right hand side of the page (which is on the left as it stands now). However, other parts of the document will use the normal left alignment.
  2. I also need the signature in print and the signature as a picture aligned vertically.

Could anyone help me with this, please? Thank you!

\documentclass\[english\]{scrartcl}

\usepackage{graphics}
\usepackage\[T1\]{fontenc}
\usepackage\[utf8\]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage\[printwatermark\]{xwatermark}
\usepackage{xcolor}

\begin{document}

\title{\LARGE Thesis Title}

\date{\today}
\maketitle

The work in this thesis is my own except where otherwise stated.

Signature

\includegraphics\[scale=0.3\]{images}

\end{document}

Best Answer

Use a tabular

\documentclass[english]{scrartcl}

%\usepackage{graphics}   %% not needed
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage[printwatermark]{xwatermark}
\usepackage{xcolor}

\begin{document}

\title{\LARGE Thesis Title}

\date{\today}
\maketitle

The work in this thesis is my own except where otherwise stated.

\hspace*{\fill}
\begin{tabular}{l}  %% if you want centered alignment use 'c' instead of 'l'
Signature \\[1ex]
\includegraphics[scale=0.3]{example-image}
\end{tabular}

Again some text

\end{document}

enter image description here