Fancyheaders:如何关闭第一页的页码?

Fancyheaders:如何关闭第一页的页码?

可能重复:
使用 fancyhdr 自定义首页

我不知道如何关闭奇偶页标题不同的下一篇文章第一页的页码。我试了\thispagestyle{empty}几次\begin{document},但不起作用。其余的都还好。

 \documentclass[a4paper,12pt,twoside]{article}
 \usepackage{lipsum}
 \newcommand\shorttitle{The Short Title}
 \newcommand\authors{Author}
 \usepackage{fancyhdr}
 \pagestyle{fancy}
 \fancyhf{}
 \fancyhead[RO,LE]{\thepage}
 \fancyhead[CO]{\shorttitle}
 \fancyhead[CE]{\authors}
 \renewcommand{\headrulewidth}{0pt}
 \begin{document}
 \thispagestyle{empty}  
 \title{The Full Title}
 \author{Author}
 \maketitle
 \section{Section A}
 \lipsum[1-2]
 \section{Section B}
 \lipsum[3-10]
 \end{document}

已添加。我不希望第一页有任何页眉或页脚。

添加 2:作为评论赫伯特 (Herbert) 的写作\fancypagestyle{plain}{\fancyhf{}}满足\usepackage{fancyhdr}了我的要求。

编辑:\thispagestyle{empty}不需要。修改后的代码变为

 \documentclass[a4paper,12pt,twoside]{article}
 \usepackage{lipsum}
 \newcommand\shorttitle{The Short Title}
 \newcommand\authors{Author}
 \usepackage{fancyhdr}
 \fancypagestyle{plain}{\fancyhf{}}
 \pagestyle{fancy}
 \fancyhf{}
 \fancyhead[RO,LE]{\thepage}
 \fancyhead[CO]{\shorttitle}
 \fancyhead[CE]{\authors}
 \renewcommand{\headrulewidth}{0pt}
 \begin{document}
 \title{The Full Title}
 \author{Author}
 \maketitle
 \section{Section A}
 \lipsum[1-2]
 \section{Section B}
 \lipsum[3-10]
 \end{document}

答案1

\maketitle使用 pagestyle plain\fancypagestyle{plain}{}
加载包后写入应该有帮助

相关内容