
修士論文のタイトルページを作成しようとしていますが、名前(テキストで記述)と署名(透明な背景)を少し重ねたいと思っています。
画像とテキストの距離を調整しようと思ったのですが、方法がわかりません。
\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}