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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
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