我正在使用该fancyhdr
软件包,据我所知,默认情况下章节页面上没有页眉,但我的所有章节页面上仍有显示节名称的页眉。我希望页脚仍带有页码,但没有页眉。
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\sectionmark}[1]{\markboth{#1}{}} % set the \leftmark
\fancyhf{}
\fancyhead{}
\fancyhead[RO, LE]{\leftmark} % 1. sectionname
\fancyfoot[C]{\thepage}
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
}
答案1
由于\chapter
使用\thispagestyle{plain}
,\fancypagestyle{plain}
重新定义必须禁用\fancyhead[RO,LE]{...}
fromfancy
样式,即\fancyhead{}
在中说\fancypagestyle{plain}{...}
。
\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\sectionmark}[1]{\markboth{#1}{}} % set the \leftmark
\fancyhf{}
\fancyhead{}
\fancyhead[RO, LE]{\leftmark} % 1. sectionname
\fancyfoot[C]{\thepage}
\fancypagestyle{plain}{%
\fancyhead{}%
\renewcommand{\headrulewidth}{0pt}
}
\usepackage{blindtext}
\begin{document}
\chapter{First}
\section{First section}
\blindtext[10]
\chapter{Second}
\section{First section in 2nd chapter}
\blindtext[10]
\end{document}