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!
General ⇒ page numbering in report
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
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
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¹
Code: Select all
\pagestyle{empty}
[1] LaTeX Resources for Beginners
Best regards and welcome to the board
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: page numbering in report
Thanks localghost ! , I changed to pagestyle{plain} as you said and it worked.