Text FormattingPage Number Position in Landscape Format

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
lynnlee
Posts: 50
Joined: Fri Jan 04, 2013 10:15 am

Page Number Position in Landscape Format

Post by lynnlee »

Hello LaTeX Community,

I use the landscape environment to change the layout of the document. But, the page numbering style fixed at left side of the page, not at the bottom. I want to change the position of the numbering to bottom of the landscape page.I also tried \thispagestyle{plain} for the specific page, but nothing change. Is additional command needs to be written in the preamble for \thispagestyle to be effective? Or other commands should be used? How to do that?

My command is as follows:

Code: Select all

\begin{document}
\thispagestyle{plain}
\begin{landscape}
...
\end{landscape}
\end{document}
I also tried sidewaystable environment with \usepackage{rotating} in the preamble. But the layout of the page changes to a wrong format and the page numbering has no change neither.

Any suggestion is appreciated.

Best,
Lynn

Recommended reading 2024:

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

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

tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

Page Number Position in Landscape Format

Post by tom »

Hi Lynn,

I don't have a solution, just an explanation. The page number is on the "left" side, because the page is part of a portrait format document. It wouldn't make sense to have page numbers in different places within the same document. Just think of a book to have a single landscape page with the page number in the outer margin. The same applies for landscape documents.

Code: Select all

\documentclass[landscape]{article}
\usepackage{blindtext, pdflscape}
\begin{document}
\blindtext
\end{document}
lynnlee
Posts: 50
Joined: Fri Jan 04, 2013 10:15 am

Re: Page Number Position in Landscape Format

Post by lynnlee »

Thank you,Tom. Your suggestion is helpful.

Best,
Lynn
Post Reply