How to make a new page in Latex?
The command \newpage will make new page but only there is somethink on the new i.e. even an empty space sign would be enough.
\documentclass{article}
\begin{document}
 How to make a new page in \LaTeX{}?
\newpage
command \newpage make a page break 
\newpage
\quad % without \quad no new page would be insert!!!
\newpage
but only there is somethink on this new page i.e. a quad or space
\end{document}