Page Layout ⇒ Weird Page Layout
Weird Page Layout
Look at the picture. It's the same chapter, same section.. No different settings. Basically, the document has seven pages, and only that one is like that.
- Attachments
-
- Capture.PNG (108.22 KiB) Viewed 2927 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: Weird Page Layout
Re: Weird Page Layout
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Weird Page Layout
welcome to the board!
We could tell you the reason for sure, if you would post your page style settings, i.e. yourahorten wrote:I've been using fancyhdr, and everything worked perfectly fine, until one of the pages got a different page style. No idea why. Anyone got a good explanation?
fancyhdr
related commands in the preamble. Generally, try to post code, such as a 
Without seeing the code, I guess you set a head/foot rule width, or fancyhdr does it by default. You can set both to zero, by adding to your document preamble:
Code: Select all
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
Weird Page Layout
Code: Select all
\usepackage[usenames]{color}
\usepackage{fancyhdr}
\setlength{\headheight}{15pt}
\usepackage{pdfpages}
\usepackage{varioref}
\pagestyle{fancyplain}
\lhead{}
\chead{}
\rhead{\textcolor{red}{Begrenset}}
\lfoot{}
\cfoot{\thepage}
\rfoot{\textcolor{red}{Begrenset}}
Weird Page Layout
This worked. Thanks!Stefan_K wrote:Hi arhorten,
Without seeing the code, I guess you set a head/foot rule width, or fancyhdr does it by default. You can set both to zero, by adding to your document preamble:StefanCode: Select all
\renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt}