I am trying to make a title page for my master's thesis, and I want my name (written in text) and signature (with transparent background) slightly overlapping.
My thought was to adjust the distance between the picture and the text, but I don't know how.
\begin{figure}[h]
\centering
\includegraphics[width=0.35\textwidth]{Illustrations/signature-01.eps}
% adjust distance here to make the picture and the text overlap
\centerline{\large\normalfont\bfseries NAME}
\end{figure}
I have tried with captions as well, but I could not get rid of the caption label with the \caption* command. It seemed like it does not work when I am using memoir class and the sidecap package.
Working example
\documentclass[a4paper, twoside]{memoir}
% Packages (most of them)
\usepackage[english, danish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{gensymb}
% Titlepage
\newlength{\drop}%
\newcommand{\titleMS}{\begingroup% MS Thesis
\thispagestyle{empty}
\newgeometry{left=25mm,right=25mm}
\drop=0.1\textheight
\vspace{0.5\drop}
\centering
{\huge\sffamily\bfseries
UNIVERSITY \
\Large\sffamily\mdseries Department}\[2\baselineskip]
{\LARGE\sffamily\bfseries TITLE}\par
\vfill
{\Large Master's Thesis\ 30 \textsc{ects} points}\par
\vfill
{\large \textbf{Author}\
NAME\
EDUCATION\
\textbf{Supervisors}\
NAME AND TITLE\
\textbf{Submitted}\
DATE}\par
\vspace{\drop}
\begin{figure}[h]
\centering
\includegraphics[width=0.35\textwidth]{Illustrations/signature-01.eps}
% adjust distance here to make the picture and the text overlap
\centerline{\large\normalfont\bfseries NAME}
\end{figure}
\vspace*{\drop}
\endgroup
\pagebreak
\restoregeometry}
\begin{document}
\fontfamily{pplj}\selectfont
\selectlanguage{english}
\titleMS
my\end{document}

\includegraphics[width=0.35\textwidth]{example-image.pdf} \par \vspace{-1cm} \centerline{\large\normalfont\bfseries NAME}replace the figure by yours. Make sure there is a\par. – Johannes_B Oct 03 '14 at 20:50\stackinsetmacro of thestackenginepackage can do this. – Steven B. Segletes Oct 03 '14 at 21:51