Possible Duplicate:
How to insert an image in the front cover of a report?
I want to insert a .eps figure on the title page of a report. This figure has to be placed after date and then some text below this figure. But I get only title, author, date on the title page. The figure and some text below it comes in next page. Could someone help me to make this figure and text also come on the title page after the date.
Below is the code I used.
\documentclass [11pt,a4paper,twoside] {report}
\usepackage[T1]{fontenc}
\usepackage[demo]{graphicx}
\usepackage{titling}
\setlength{\droptitle}{-30em}
\begin{document}
\title{LEARNING LATEX}
\author{rakesh}
\date{\today}
\maketitle
\begin{figure}[h]
\centering
\includegraphics [scale=1, width=2cm,height=2cm] {logo.eps}
\end{figure}
\begin{center}
dummy text1\\ dummy text2, text3.
\end{center}
\end{document}

logo.eps), I used a rectangular box (2cm x 2cm) to replace it. You can use\includegraphics[width=2cm,height=2cm]{logo.eps}in place of my\rule{2cm}{2cm}and it should work as expected. – Werner Jul 31 '12 at 21:44