Tag: page

  • latex no new page in chapter

    Or, how to stop the new page if a new chapter starts? The real question is why there is allways a new page, if chapter is used? If you take a look on book.cls you will find this: \newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi \thispagestyle{plain}% \global\@topnum\z@ \@afterindentfalse \secdef\@chapter\@schapter} to stop the new page clearpage and cleardoublepage must be deleted and […]

  • latex new page command

    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 […]