[Tex/LaTex] Picture on title page

graphicskoma-scripttitles

I'm trying to add a picture to my title page but the image appears on its own page. Can anyone help with this?

 \documentclass[a4paper,12pt]{scrartcl}

 \title{Report}
 \author{blah}
 \date{\today}
 \publishers{blah}
 \nocite{*}
 \addbibresource{bib.bib}
 \begin{document}

 \begin{titlepage}
 \includegraphics{images/image.png}
 \maketitle

 \end{titlepage}
 \end{document}

Best Answer

\maketitle creates a specific titlepage layout. You can't combine it with other elements. But you can use \titlehead to insert a graphic:

\documentclass[a4paper,12pt,titlepage]{scrartcl}
\usepackage{graphicx}
\titlehead{\centering\includegraphics[width=6cm]{tiger}}
\title{Report}
\author{blah}
\date{\today}
\publishers{blah}
\begin{document}  
\maketitle
\end{document}