제목 페이지의 헤더 이미지가 모든 콘텐츠를 다음 페이지로 푸시하지 못하게 하려면 어떻게 해야 합니까?

제목 페이지의 헤더 이미지가 모든 콘텐츠를 다음 페이지로 푸시하지 못하게 하려면 어떻게 해야 합니까?

저는 라텍스를 처음 접했습니다. 상단에 조직 그래픽이 있는 제목 페이지를 만들려고 하는데 앞에 이미지를 배치하면 \maketitle제목, 날짜, 초록 등이 다음 페이지로 밀려납니다. 콘텐츠의 나머지 부분을 그래픽 아래 첫 페이지에 강제로 표시하는 방법이 있습니까?

최소한의 작업 예

\documentclass[11pt, letterpaper]{article}
\usepackage[left=1in,top=1in,right=1in,bottom=1in]{geometry}
\usepackage{abstract}
\renewcommand{\abstractname}{}    % clear the title
\renewcommand{\absnamepos}{empty} % originally center
\usepackage{titlesec}
\usepackage[strings]{underscore} % protect underscores in most circumstances
\usepackage[section]{placeins}
\usepackage{lipsum}

\renewenvironment{abstract}
 {{%
    \setlength{\leftmargin}{0mm}
    \setlength{\rightmargin}{\leftmargin}%
  }%
  \relax}
 {\endlist}

\title{
    My Award Winning Paper 
\thanks{This is a test.This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.  }
}

\author{\Large Bill BIllerson  \\ \normalsize\emph{University of Newtopia} 
\and 
\Large Jim Jimmerson  \\ \newline\normalsize\emph{University of Duderino}
}

\normalem
%%%% BEGIN MAIN DOCUMENT %%%%

\begin{document}

\begin{center}
\includegraphics[width=6.5in, height=2in]{example-image} 
\end{center}
\maketitle

\thispagestyle{plain}

\begin{abstract}
    \hbox{\vrule height .2pt width 39.14pc}
    \vskip 8.5pt % \small 
\noindent \small{ \lipsum[3-6]} 
\vskip 8.5pt \noindent \emph{Keywords}: test, test, test, test \par
    \hbox{\vrule height .2pt width 39.14pc}
\end{abstract}

\end{document}

감사합니다!

답변1

@GonzaloMedina가 시연한 대로 사용자 정의 제목 페이지를 만드는 것이 더 좋습니다 ---https://tex.stackexchange.com/a/155274/197451

세부 정보를 편집하고 입력하세요. 문제가 지속되면 되돌리세요.

여기에 이미지 설명을 입력하세요

\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[demo]{graphicx}
\usepackage{array}

\begin{document}

\begin{titlepage}
\centering

\includegraphics[height=1cm,width=2cm]{logo1}\hfill
\includegraphics[height=1cm,width=2cm]{logo2}\par\vfill

{\sffamily\small University of Science\par\vfill\vfill}

{\Large\bfseries THÈSE\par\vskip1em}

{\small pour obtenir le titre de\par\vskip0.5em}

{\large\bfseries Docteur en Sciences de l'Université Nice-Sophia Antipolis\par\vskip0.5em}

{\small Discipline : Mathématiques\par\vfill}

{\sffamily\small Presented by : Person\par\vfill}

\begin{minipage}{.9\textwidth}
\hrulefill\par\smallskip
\centering
{\bfseries
Équations différentielles stocastiques : resolubilité forte d'équations singulières dégénérées; analyse numérique de systèmes progressifs-rétrogrades de McKean-Vlason}
\par\vskip-.3\baselineskip
\hrulefill
\end{minipage}\par\vfill

{\small
Thèse dirigée par \textbf{Francois Delarue}\par\vskip0.5em

souteme le 6 décembre 2013\par\vskip1em

devant le jury composé par\par\vfill

\begin{tabular*}{12cm}{@{} l @{\extracolsep{\fill}} ll>{\raggedleft\arraybackslash}r@{}}
M. & Cédric Bernardin & Examinateur & Profésseur des Universités \\
Mmme. & Cédric Bernardin & Examinateur & Directeur de Recherche INRA \\
M. & Cédric Bernardin & Examinateur & Profésseur des Universités \\
M. & Cédric Bernardin & Directeur & Profésseur des Universités \\
M. & Cédric Bernardin & Rapporteur & Directeur de Recherche INRA \\
M. & Cédric Bernardin & Rapporteur & Profésseur des Universités
\end{tabular*}
}

\vfill

\end{titlepage}

\end{document}

관련 정보