Criação de texto e imagem sobrepostos

Criação de texto e imagem sobrepostos

Estou tentando fazer uma página de título para minha tese de mestrado e quero que meu nome (escrito em texto) e assinatura (com fundo transparente) se sobreponham levemente.

Pensei em ajustar a distância entre a imagem e o texto, mas não sei como.

\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}

Também tentei com legendas, mas não consegui me livrar do rótulo da legenda com o \caption*comando. Parece que não funciona quando estou usando memoira classe e o sidecappacote.

Exemplo de trabalho

\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}

Responder1

Também podemos usar o comando para espaçar as peças aqui, mas damos a ele um espaço negativo. Tentei limpar um pouco o código.

Como você deseja ter margens extras para a página de título, você pode largar completamente o livro de memórias aqui, fazer sua página de título e incluí-la na tese. Realmente não adianta mexer nas margens.

christofferTitlepage

\documentclass[a4paper]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{xcolor}
\geometry{margin=25mm}

\newlength{\drop}%
\newcommand*{\titleMS}{
    \begin{titlepage}
\fontfamily{pplj}\selectfont
    \drop=0.1\textheight
    \vspace*{0.5\drop}
    \centering
    {\huge\sffamily\bfseries
        UNIVERSITY \par
    \Large\sffamily\mdseries Department\par}
    \vspace{2\baselineskip}
    {\LARGE\sffamily\bfseries TITLE\par}
    \vfill
    {\Large Master's Thesis\\ 30 \textsc{ects} points\par}
    \vfill
    {\large \textbf{Author}\par
    NAME\par
    EDUCATION\par
    \textbf{Supervisors}\par
    NAME AND TITLE\par
    \textbf{Submitted}\par
DATE\par}

\vspace{\drop}

    % adjust distance here to make the picture and the text overlap
%\includegraphics[width=.35\linewidth]{example-image-a}\par
{\color{gray!50}\fontsize{40pt}{56pt}\usefont{T1}{qzc}{m}{it} Christoffer\par}
\vspace{-.7\baselineskip}
    {\large\normalfont\bfseries NAME\par}
\end{titlepage}
}
\begin{document}
\titleMS
\end{document}

informação relacionada