here is what i wrote:
Code: Select all
\newpage
\title{Reference List}
\maketitle
reference 1.\\
reference 2.
...
Code: Select all
\newpage
\title{Reference List}
\maketitle
reference 1.\\
reference 2.
...
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\newpage
is correct. Insert \newpage
when you would like to start a new page, such asCode: Select all
\documentclass{article}
\begin{document}
\newpage
\title{Reference List}
\maketitle
reference 1.\\
reference 2.
\newpage
text on the next page
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis