I'm very new to Latex. I am trying to make a title page that has an organization graphic at the top, but placing the image before \maketitle pushes the title, date, abstract etc to the next page. Is there a way to force the remainder of the content to stay on the first page below the graphic?
Minimal working example
\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}
Thank you!

\includegraphicadd\vspace{-2in}to make it effectively occupy no space. – barbara beeton Mar 27 '20 at 02:33graphicxandulemshould be loaded to make it compilable without errors. Why don't you just place\includegraphics[width=6.5in, height=2in]{example-image}(without the surroundingcenterenvironment) directly into your\titledefinition? – Jasper Habicht Dec 20 '21 at 15:34