How to make a TITLEPAGE
The following is an example of how to do a title page. Just change the
information you need to for your paper:
\documentclass{report}
\title{This is the Title}
\author{This is your name}
\begin{document}
\maketitle
(the text of your paper)
\end{document}
By default, the titlepage will include the date on which you latex'd the
paper. If you want to override that with a date of your own, put the line
\date{Your Date Here}
along with the \title and \author lines.
If you're using the report documentclass, the title page will be printed as a
separate page; if you're using the article documentclass, the title will be
printed at the top of the first page of text.
|