Thanks, Ijon Tichy. I've made the changes off-line on my own compiler and that works. I will repost the new code. I still have the final problem of not getting the book title and page number in the header. Also, the page number is appearing in the footer. I want the footer to be always blank.
Sorry, I did not see your last paragraph. Due to my ignorance, I have been trying to set up what I want by copying examples I see on the internet and trying to understand how they work. I recognize that I lack the overall structural idea of how fancyhdr works in spite of reading the documentation on it as carefully and as thoroughly as I can.
I'll go back and read the fancyhdr documentation again to see how to get it to do what I want which is:
Even-side filler pages before chapter pages: Completely blank
Chapter pages (always odd-side): No header or footer
Non-chapter pages: No footer with header as described below (I don't know how this is going to render so I'll put it in code tags):
Code: Select all
(Header)
| Left side Centre Right side |
+------------------------------------------------------+
Odd Pages: | BOOK TITLE 45 INTRODUCTION | or
Even Pages: | INTRODUCTION 46 BOOK TITLE |
Head Rule: _______________________________________________________
.
. (Content)
.
| |
+------------------------------------------------------+
(Footer - Always blank)
minimal working exampleCode: Select all
\documentclass[11pt,letterpaper]{book}
% Load packages
\usepackage{fancyhdr}
\usepackage{tocloft}
\usepackage{lipsum}
\usepackage[cleardoublepage=empty]{scrextend}
% Initialize fancyhdr with this mandatory statement
\pagestyle{fancy}
% Create a font shortcut
\newcommand{\bookheader}{\sffamily\fontseries{b}\fontsize{10}{12}\selectfont}
% Remove the Chapter label, i.e. 'Chapter 1 - '
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{#1}}{}}
\renewcommand{\sectionmark}[1]{\markright{\MakeUppercase{#1}}{}}
% Setup code to be followed when LaTeX encounters a chapter title page
\fancypagestyle{plain}{
\fancyhf{} % Clear the header fields
\renewcommand{\headrulewidth}{0pt} % Create an invisible header ruler line
}
% Setup code to be followed when LaTeX is processing non-chapter title pages
\fancypagestyle{headings}{
\fancyhead[LO]{\bookheader{BOOK TITLE}} % Put the book title on the left (inside) of odd pages
\fancyhead[CO]{\bookheader\thepage} % Put the page number in the center of odd pages
\fancyhead[RO]{\bookheader\leftmark} % Put the chapter title on the right (outside) of odd pages
\fancyhead[LE]{\bookheader\leftmark} % Put the chapter title on the left (outside) of even pages
\fancyhead[CO]{\bookheader\thepage} % Put the page number in the center of even pages
\fancyhead[RE]{\bookheader{BOOK TITLE}} % Put the book title on the right (inside) of even pages
\renewcommand{\headrulewidth}{0.4pt} % Create a thin header ruler line
}
\begin{document}
\chapter{Introduction}
\lipsum[1-10]
\chapter{Process}
\lipsum[1-10]
\end{document}
[/MWE]