Generalpage numbering in report

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
rlrl
Posts: 2
Joined: Wed Oct 29, 2008 7:47 am

page numbering in report

Post by rlrl »

Hi,

I'm very new to latex , I'm using tecniccenter to create a report but so far my report only has the page number in the first page of each chapter

how can I get all pages in a chapter to show the page number?

Thanks!

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

page numbering in report

Post by localghost »

Without any related command the plain page style is set by default, which results in page numbers on every page in the center of the foot. There must be a command that switches off page numbering. Search your document for the command

Code: Select all

\pagestyle{empty}
This line may occur in the preamble, the part before \begin{document}. Set the page style as you want. If you don't get along, create a minimal working example (MWE) that clearly reproduces this undesired effect. For basic LaTeX documentation have a look at another forum topic [1]. There you will find useful hints.

[1] LaTeX Resources for Beginners


Best regards and welcome to the board
Thorsten¹
rlrl
Posts: 2
Joined: Wed Oct 29, 2008 7:47 am

Re: page numbering in report

Post by rlrl »

Thanks localghost ! , I changed to pagestyle{plain} as you said and it worked.
Post Reply