Okay, here are the PDF and the code.
Thanks.
Page Layout ⇒ Fancy heading problem: section name to the left side
NEW: TikZ book now 40% off at Amazon.com for a short time.
Fancy heading problem: section name to the left side
Well, of course your example code won't produce the desired result; you are using the "E" and "O" options for fancyhdr but without declaring the twoside class option (as I did before in my example code).
Change
to
or, let use know if you don't want a twoside style, to suggest you the necessary modifications.
Also, your code contains a mistake (and I am to blame for this one): replace
with
Change
Code: Select all
\documentclass[letterpaper,12pt]{report}
Code: Select all
\documentclass[letterpaper,12pt,twoside]{report}
Also, your code contains a mistake (and I am to blame for this one): replace
Code: Select all
\renewcommand\headheight{15pt}
Code: Select all
\setlength\headheight{15pt}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Fancy heading problem
Thaaaaaaaaaaaanks!!! IT WORKED!!!