如何防止標題頁上的標題圖像將所有內容推送到下一頁?

如何防止標題頁上的標題圖像將所有內容推送到下一頁?

我對乳膠很陌生。我正在嘗試製作一個頂部有組織圖形的標題頁,但將圖像放在前面\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}

相關內容