I have a sample .tex file as below - in this file i have redefined the foot by using fancyhdr package. My questions as below:
- The chapter page (in this example, say page 1 & page 5) don't have the foot I modified by
fancyhdr. How can I make all pages use the same foot? - If I want the page begin from page 2, what should i do? for example, current page1 will be empty, and current page 2 will be page 1 and etc...
Hope I have put my question clearly.:)
\documentclass{book}
\usepackage{blindtext}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyfoot[R]{\scriptsize \thepage}
\fancyfoot[L]{\scriptsize hihi}
\fancyfoot[C]{\scriptsize \leftmark}
\renewcommand{\headrulewidth}{0pt}
\begin{document}
\chapter{chapter1}
\blindtext\blindtext\blindtext\blindtext\blindtext
\blindtext\blindtext\blindtext\blindtext\blindtext
\chapter{chapter2}
\blindtext\blindtext\blindtext\blindtext
\blindtext\blindtext\blindtext
\end{document}