Page Layoutnew page

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
chari
Posts: 2
Joined: Tue Oct 16, 2018 12:34 pm

new page

Post by chari »

Hi, can someone tell me how to change to a new page? I tried but it did not work successfully. I'm wondering what the problem is.
here is what i wrote:

Code: Select all

\newpage
\title{Reference List}
\maketitle

reference 1.\\

reference 2.
...
thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

new page

Post by Stefan Kottwitz »

Hi Chari,

welcome to the forum!

\newpage is correct. Insert \newpage when you would like to start a new page, such as

Code: Select all

\documentclass{article}
\begin{document}
\newpage
\title{Reference List}
\maketitle

reference 1.\\

reference 2.
\newpage
text on the next page
\end{document}
Stefan
LaTeX.org admin
chari
Posts: 2
Joined: Tue Oct 16, 2018 12:34 pm

new page

Post by chari »

Thank you so much!
Post Reply