Possible Duplicate:
Custom title page in report or book class?
I am trying to write my PhD proposal using the document class report. I borrowed the simplest template from:
http://theoval.cmp.uea.ac.uk/~nlct/latex/thesis/examples/index.html
On the first page I wanted to a couple more sentences like "A proposal submitted to so and so university for so and so PhD." I pasted the code below. Is there a simple way to add a statement? Have I chosen a wrong template for my proposal?
\documentclass[a4paper]{report}
\begin{document}
\title{A Sample PhD Thesis}
\author{A. N. Other}
\date{July 2004}
\maketitle
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\chapter*{Acknowledgements}
\begin{abstract}
\end{abstract}
\pagenumbering{arabic}
\chapter{Introduction}
\label{ch:intro}
\chapter{Technical Introduction}
\label{ch:techintro}
\chapter{Method}
\label{ch:method}
\chapter{Results}
\label{ch:results}
\chapter{Conclusions}
\label{ch:conc}
\bibliographystyle{plain}
\bibliography{thesis}
\end{document}
titlepagefor an extended title and not the macro\maketitle– Sep 17 '12 at 06:21\date{July 2004 \\\vfill <YOUR TEXT>}. – mkota Sep 17 '12 at 07:14\titleand\authorand using\titlepageare discussed there. If you need any more help please let me know. – Sep 17 '12 at 13:57