Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide the page number in LaTex on first page of a chapter? [closed]

Tags:

latex

How to hide the page number on first page of a chapter in LaTeX.

like image 471
Luiguis Avatar asked Jan 30 '10 02:01

Luiguis


People also ask

How do I not show page number on first page LaTeX?

To suppress the page number on the first page, add \thispagestyle{empty} after the \maketitle command. The second page of the document will then be numbered "2". If you want this page to be numbered "1", you can add \pagenumbering{arabic} after the \clearpage command, and this will reset the page number.

How do I remove page numbers from a chapter in LaTeX?

To suppress page numbers on a single page, use \thispagestyle{empty} somewhere within the text of the page.

How do you not number a chapter in LaTeX?

\frontmatter gives you unnumbered chapters and roman page numbering.


2 Answers

\thispagestyle{empty}
like image 129
Peter Avatar answered Sep 18 '22 19:09

Peter


You could also use the titlesec package to get tremendous control over each chapter:

  % This is done with the titlesec package                                                                            
  \titleformat{\chapter}[display]
              {\normalfont\Large\filcenter} % {fmt}                                                                   
              {\thechapter.\ }              % {label}                                                                 
              {1pc}                         % {sep}                                                                   
              {\vspace{-1in}\enlargethispage{-0.5in}\thispagestyle{empty}}    % {before}                                                   
like image 38
vy32 Avatar answered Sep 19 '22 19:09

vy32