删除 LegrandOrangeBook 中的首页页码和章节名称

删除 LegrandOrangeBook 中的首页页码和章节名称

正在使用罗格朗橙皮书书籍模板。我想知道如何删除顶部页眉上的页码及其对应的章节名称。我希望将页码放在页脚的中心。

答案1

在文件“structure.tex”中,将第 176 行左右的代码替换为以下内容。

\fancyhf{} % Clear default headers and footers
%\fancyhead[LE,RO]{\sffamily\normalsize\thepage} % Styling for the page number in the header
%\fancyhead[LO]{\rightmark} % Print the nearest section name on the left side of odd pages
%\fancyhead[RE]{\leftmark} % Print the current chapter name on the right side of even pages
\fancyfoot[C]{\thepage} % Uncomment to include a footer

相关内容