Page Layoutno page number for first page in article class

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
neumannturing
Posts: 32
Joined: Sun Mar 01, 2009 8:29 am

no page number for first page in article class

Post by neumannturing »

Hello,
After set \pagestyle{empty}, all page numbers for other pages are gone except for the first page. It seems that \maketitle create the number in the first page as follows. How can I turn off the page number for the first page while still keeping the title? Thanks

Code: Select all

\documentclass[twoside,twocolumn]{article}
\title{Title: bla bla bla}
\begin{document}
\maketitle
\pagestyle{empty}
\section{INTRODUCTION}
bla bla.....
\end{document}

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
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

no page number for first page in article class

Post by frabjous »

\maketitle will give the current page the page style "plain", which does have a page number unless you turn it off. You can assign a given page the page style empty with the \thispagestyle command, e.g.:

Code: Select all

\documentclass[twoside,twocolumn]{article}
\title{Title: bla bla bla}
\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
\section{INTRODUCTION}
bla bla.....
\end{document}
Or else you can redefine the plain page style to not have a page number, which is more complicated. Let us know if you want to do that.
Post Reply