我想删除特定页面上的页码。但是,页眉和页脚应保持不变。如果我尝试:
\thispagestyle{empty}
页眉和页脚消失了。建议的删除页码的方法是什么?
答案1
标准页面样式不允许只让页脚消失。不过,我能想到两种可能性。
- 您可以定义自己的页面样式,其中包含所需的页眉,但不包含任何页脚。此新定义的页面样式可以与 一起使用
\thispagestyle
。 - 另一方面,您可以
\cfoot
在文档主体内使用页脚声明命令(例如)。如果您想隐藏某一页的页脚,可以执行\cfoot{}
。请注意,您必须使用 激活下一页的页脚\cfoot{\thepage}
。您可以通过定义两个新命令来简化此过程:\def\nofoot{\cfoot{}}
和\def\withfoot{\cfoot{\thepage}}
。
答案2
\usepackage{fancyhdr} % Uses the fancyheadr package
\fancyhf[L]{\underline{MYCONTENT}} % Above justifies Left in header and footer "MYCONTENT".
\fancyfoot[C]{} % Removes the page number from Center of the footer.
从 2019 年 1 月 31 日的包裹文档中了解到。fancyhdr
我希望这会有所帮助。