55

I am a newbie in Latex. I know there are many manuals where I can learn how to use Latex but I am facing a problem I can't manage to solve simply. The structure of my document is this:

  • title page
  • abstract
  • table of contents

The problem is that I don't want that the abstract page to have the page number at the bottom. To do this in the title page I simply used the command \pagestyle{empty} . Now if I try to do the same with the abstract page it doesn't work. Here it is the code of my document:

\begin{document}

\pagestyle{empty}

\begin{figure}[t]
\centering
\includegraphics[scale=.40]{Sapienza.png}
\vspace{3em}
\end{figure}

\begin{center}
%%%% here there are many sentences
\end{center}

\clearpage{\pagestyle{empty}\cleardoublepage}

\pagestyle{empty} %%in order to delete the number at the bottom of the page

\chapter*{Abstract}
%%sentences

\pagestyle{plain}%%to insert again the number of the page

\tableofcontents

The problem is that the abstract page keeps showing the page number and I can't manage to delete it. Can you please help me?

AndréC
  • 24,137

2 Answers2

63

Use:

\thispagestyle{empty}

It will remove the pagenumber on the page it's applied to.

  • Ok got it.. it works thank you. But, why the simple \pagestyle{empty} doesn't work? –  Apr 30 '13 at 09:28
  • 2
    Welcome to TeX.sx! Your post was migrated here from [so]. Please register on this site, too, and make sure that both accounts are associated with each other (by using the same OpenID), otherwise you won't be able to comment on or accept answers or edit your post. – Werner Apr 30 '13 at 20:21
  • 4
    Note that \pagestyle{empty} would remove it on the whole document. – Skippy le Grand Gourou Sep 22 '17 at 13:46
  • 2
    \pagestyle doesn't have any effect on the current open page; it takes effect with the next page. hence \thispagestyle{...} – barbara beeton Nov 09 '17 at 18:20
  • Why this \thispagestyle{empty} does not work in my case? What is there a possible cause of this? – MK Huda May 15 '22 at 21:32
47

I prefer this method:

\pagenumbering{gobble}

It allows you to still have other heading elements.

Zombo
  • 1