\pagestyle{empty} 不适用于第一页

\pagestyle{empty} 不适用于第一页

可能重复:
\pagestyle{empty} 似乎不适用于带有 \maketitle 的页面

我有一份文件。其余页面没有页码,但我希望仅删除第一页的页码。MWE 是:

\documentclass[onecolumn,12pt]{IEEEtran}

\usepackage[left=1in,right=1in,bottom=0.95in,nohead,nofoot]{geometry}
\begin{document}
\title{ABCD}
\author{efg

%\vspace{3mm}
Electrical Engineering\\
University\\
address\\
email: $\{$email $\}$}
\markboth{}{}

\maketitle
\pagestyle{empty}
\end{document} 

答案1

使用\thispagestyle{empty}而不是\pagestyle{empty}

\documentclass[onecolumn,12pt]{IEEEtran}

\usepackage[left=1in,right=1in,bottom=0.95in,nohead,nofoot]{geometry}
\begin{document}
\title{ABCD}
\author{efg

%\vspace{3mm}
Electrical Engineering\\
University\\
address\\
email: $\{$email $\}$}
\markboth{}{}

\maketitle
\thispagestyle{empty}
\end{document} 

在此处输入图片描述

相关内容