如何使用 fancyhdr 排除第 0 章

如何使用 fancyhdr 排除第 0 章

我正在使用 \documentclass{report},我想更改页眉和页脚中的两件事。

第一个与“\fancyfoot[L]{Chapter \thechapter}”相关;我想从第 1 章开始,但是第 0 章出现在前言的页脚中。

其次,我想在页眉中包含章节标题。

% Header/footer
\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhead{}
\fancyhead[R]{}
\fancyfoot{}
\fancyfoot[C]{\thepage}
\fancyfoot[L]{Chapter \thechapter}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

相关内容