从 fancyhdr 页脚中排除第 0 章

从 fancyhdr 页脚中排除第 0 章

我在使用 fancyhdr 包时遇到了一个问题,如果你看一下页脚的左侧,上面写着“Kapitel 0”,我想专门删除第 0 章。第 0 章包含目录、表格表和图表表。

以下是代码:

\fancypagestyle{plain}{
\fancyhf{}%
\fancyfoot[L]{\chaptername \hspace{1pt} \thechapter}
\fancyfoot[R]{\thepage \hspace{1pt} af \pageref{LastPage}}
\fancyhead[L]{Fagprojekt for matematik og teknologi (01666)}
\fancyhead[R]{22/6-2016}
\renewcommand{\headrulewidth}{0.4pt}% Line at the header invisible
\renewcommand{\footrulewidth}{0.4pt}% Line at the footer visible}

我曾考虑重新定义\chaptername仅包含数值大于 0 的任何章节,并制作一个包含 TOC、TOT 和 TOF 的新页面样式,但这两种选择都没有任何效果。

相关内容