[Tex/LaTex] Latex: Add Image Above the Title

pdftextitles

I have an Image, and I would like to add the image above the Title. The Downbelow Code gives the entire page to the Image. I want the image and the Title, Autother to be displayed on the same page

\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~\\[1cm]
\title{xxxxxxx
\\In xxxxx }
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

Best Answer

I don't recommend that \\[...] stuff there, but it's possible to include the graphic file as part of the title itself.

(Remove the demo option afterwards)

\documentclass{article}

\usepackage[demo]{graphicx}
\begin{document}

\title{%
\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~ 
\\[1cm]
xxxxxxx
\\In xxxxx 
}
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

\end{document}

enter image description here

Some update, with the famous CTAN TeX Lion (copyright by Duane Bibby)

\documentclass{article}

\usepackage{graphicx}
\begin{document}

\title{%
%\includegraphics[width=0.1\textwidth]{images/Company_Groups.jpg}~ 
\includegraphics[width=0.4\textwidth]{ctanlion}~\\[1cm]
xxxxxxx\\
In xxxxx 
}
\author{N. N. Arif
\\ xxxx in headquarters, xxxxx}
\date{June 18, 2015}
\maketitle

\end{document}

enter image description here

Related Question