I have the following title page in LaTeX:
\documentclass{article}
\title{Appendix A: User Manual}
\author{
John Smith\\University XYZ\\Albert Square\\Walford\\NC1 8AE
}
\begin{document}
\maketitle
\end{document}
What is the proper way to add a new page, say, for the contents page and start editing that new page?
Best Answer
The easiest way to finish a page (and create a new one) is the
\newpage
command. This will add enough vertical space to fill the current page, and then add a page break.But in your case you will have an almost empty first page - in an article you normally don't want a separate title page. Simply put the table of contents (
\tableofcontents
) on the same page, and then start with the first section:(You will need at least two LaTeX runs to see the full table of contents.)