47

I am working on a maths assignment and new to using LaTeX. I have written the assignment up, but I would like the title page to be its own page. Currently my title page is a few lines generated by \title and \author, but it then goes straight on to my first \section content.

My assignment's \documentclass is article.

The code that generated the title and section is this:

\begin{document}
\maketitle
\section{Section header}

How can I create the title page so that it is completely on its own separate page and not shared with the section?

Striezel
  • 105
Aesir
  • 813

1 Answers1

60

The article class recognises the titlepage option, which forces the \maketitle command to create a separate page.

\documentclass[titlepage]{article}
\author{A.\,N.~Other}
\title{Some things I did}
\begin{document}
\maketitle
Some text
\end{document}
Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036