如何隐藏第一页上的花哨页眉和页脚?在其他页面上,它们应该是可见的。
答案1
放在\thispagestyle{empty}
文档的开头。这只会影响第一页:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{Top Left}
\fancyhead[C]{Top Center}
\fancyhead[R]{Top Right}
\renewcommand{\headrulewidth}{0.4pt}
\fancyfoot[L]{Bottom Left}
\fancyfoot[C]{\thepage}
\fancyfoot[R]{Bottom Right}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}\thispagestyle{empty}
Lorem ipsum.
\newpage
Lorem ipsum to you, too, brother.
\end{document}
请注意,如果您使用\maketitle
,则必须将\thispagestyle{empty}
后因为\maketitle
会\maketitle
触发\thispagestyle{plain}
,这是仅在底部显示页码的标准页面样式。
empty
如果您想在第一页上使用任何其他页面样式,当然您可以输入其他任何内容来代替。
答案2
将页眉和页脚的序言移到文档中\newpage
您希望其开始的位置之后。
\documentclass{article}
\usepackage{fancyhdr}
\begin{document}
%\thispagestyle{empty}
Lorem ipsum.
\newpage
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{Top Left}
\fancyhead[C]{Top Center}
\fancyhead[R]{Top Right}
\renewcommand{\headrulewidth}{0.4pt}
\fancyfoot[L]{Bottom Left}
\fancyfoot[C]{\thepage}
\fancyfoot[R]{Bottom Right}
\renewcommand{\footrulewidth}{0.4pt}
Lorem ipsum to you, too, brother.
\end{document}