我有一份文件。其余页面没有页码,但我希望仅删除第一页的页码。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}