我正在使用经典论文风格来自André Miede 的 Bitbucket。
我想隐藏每章第一页的页码。
在序言中使用\renewcommand*{\chapterpagestyle}{empty}
似乎没有任何效果。
请参阅下面的 MWE:
\documentclass[%
twoside,%
openright,%
numbers=noenddot,%
headinclude,%
footinclude,%
cleardoublepage=empty,%
paper=a4,%
fontsize=11pt%
]{scrreprt}
\usepackage{classicthesis}
\renewcommand*{\chapterpagestyle}{empty}
\begin{document}
\chapter{Chapter One}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nisl augue,
hendrerit non convallis nec, finibus et nisl. Duis purus nulla, congue placerat
nisi eget, lacinia maximus nisi. Donec euismod magna neque, ac blandit sem
consectetur vitae. Proin cursus odio eros, vel eleifend nisl commodo ac.
Interdum et malesuada fames ac ante ipsum primis in faucibus.
\end{document}
答案1
包装classicthesis
特意将章节的第一页设计为在右外页脚位置显示页码。特别是,在classicthesis.sty
,我们发现这一行:
\ofoot[\small\pagemark]{}% only for plain.scrheadings page style (first page of a chapter)
因此我们需要做的就是用 覆盖它\ofoot[]{}
。
\documentclass[%
twoside,%
openright,%
numbers=noenddot,%
headinclude,%
footinclude,%
cleardoublepage=empty,%
paper=a4,%
fontsize=11pt%
]{scrreprt}
\usepackage{classicthesis}
\ofoot[]{}% <- added here
\usepackage{blindtext}
\begin{document}
\chapter{Chapter One}
\blindtext[10]
\end{document}