用Latex写IEEE格式的论文时如何取消页码

时间:2022-08-16 18:18:57

在IEEE投稿时,并不要求写页码。但是通过IEEEtran模板得出的文章是存在页码的,那么怎么去除这个页码呢?


以下为去掉页码的代码

\pagestyle{empty}  % no page number for the second and the later pages
\thispagestyle{empty} % no page number for the first page

其中,第一句是去掉第二页及其后各页的页码,第二句可以当前页,也就是第一页第一页的代码。

上两句代码的位置位于

\maketitle

之后即可。