Page Layoutpage number not required on abstract

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
sabahmed
Posts: 36
Joined: Thu Aug 04, 2011 8:55 pm

page number not required on abstract

Post by sabahmed »

hello everyone
i dont want any page numbers on title and abstract page. for this purpose i have put the command

Code: Select all

\pagenumbering{roman}
after abstract page where abstract is decleared as

Code: Select all

\renewcommand{\abstractname}{\textbf\large ABSTRACT}
\begin{abstract}here is my abstract \end{abstract}
but page number still appears on abstract page. why it is so? please help me
Last edited by sabahmed on Mon Jan 16, 2012 10:02 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

page number not required on abstract

Post by Stefan Kottwitz »

On the page with the abstract, you could use

Code: Select all

\thispagestyle{empty}
Alternatively

Code: Select all

\pagenumbering{gobble}
to suppress the page number.

Stefan
LaTeX.org admin
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

page number not required on abstract

Post by localghost »

Although solved, I cannot comprehend the problem with the below code.

Code: Select all

\documentclass[11pt,titlepage]{article}
\usepackage[T1]{fontenc}

\begin{document}
  \begin{titlepage}
    The Titlepage 
  \end{titlepage}

  \begin{abstract}
    The Abstract 
  \end{abstract}
\end{document}

Thorsten
p2ya
Posts: 3
Joined: Tue Jan 17, 2012 12:53 am

Re: page number not required on abstract

Post by p2ya »

Hey,
I was faced with an issue is hiding the page number at my content page but keeping the style of the page and footer. is there any way that i can simply just hide page number without affecting anything else?
Cheers,
Pouya
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

page number not required on abstract

Post by Stefan Kottwitz »

Hi Pouya,

welcome to the board!

Yes, as I wrote above:

Code: Select all

\pagenumbering{gobble}
hides it.

Stefan
LaTeX.org admin
p2ya
Posts: 3
Joined: Tue Jan 17, 2012 12:53 am

Re: page number not required on abstract

Post by p2ya »

Hi Stefan,
Thanks for providing help. I added command \pagenumbering{gobble} to the content page but the problem is that the page number will be hided from next pages too. is there anyway to prevent this?
Cheers,
Pouya
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

page number not required on abstract

Post by Stefan Kottwitz »

Hi Pouya,

on the next page you could use

Code: Select all

\pagenumbering{arabic}
to switch on the numbering. If you would like to continue with a higher page number than one, you could use

Code: Select all

\refstepcounter{page}
or

Code: Select all

\setcounter{page}{2}
for example.

Stefan
LaTeX.org admin
Post Reply