겹치는 텍스트와 이미지 만들기

겹치는 텍스트와 이미지 만들기

석사 논문의 제목 페이지를 만들려고 하는데, 이름(텍스트로 작성)과 서명(배경 투명)이 약간 겹치고 싶습니다.

그림과 글 사이의 거리를 조절하려고 생각했는데 어떻게 하는지 모르겠어요.

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

캡션에도 시도해 보았지만 명령으로 캡션 레이블을 제거할 수 없었습니다 \caption*. memoir클래스와 패키지를 사용하면 작동하지 않는 것 같았습니다 sidecap.

실제 사례

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

답변1

여기에서도 부품 간격을 지정하는 명령을 사용할 수 있지만 음수 공간을 제공합니다. 코드를 조금 정리하려고했습니다.

제목 페이지에 추가 여백을 두고 싶으면 여기에 회고록을 완전히 삽입하고 제목 페이지를 작성하여 논문에 포함시킬 수 있습니다. 여백을 가지고 문제를 일으키는 것은 실제로 쓸모가 없습니다.

크리스토퍼제목 페이지

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

관련 정보