
Estoy intentando hacer una página de título para mi tesis de maestría y quiero que mi nombre (escrito en texto) y mi firma (con fondo transparente) se superpongan ligeramente.
Mi idea era ajustar la distancia entre la imagen y el texto, pero no sé cómo.
\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}
También lo intenté con subtítulos, pero no pude deshacerme de la etiqueta del título con el \caption*
comando. Parecía que no funciona cuando uso memoir
la clase y el sidecap
paquete.
Ejemplo de trabajo
\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}
Respuesta1
Aquí también podemos usar el comando para espaciar partes, pero le damos un espacio negativo. Intenté limpiar un poco el código.
Como desea tener márgenes adicionales para la página de título, puede dejar aquí sus memorias por completo, hacer su página de título e incluirla en la tesis. Realmente no sirve de nada alterar los márgenes.
\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}