页码怎么删除
⽤Latex写IEEE格式的论⽂时如何取消页码在IEEE投稿时,并不要求写页码。但是通过IEEEtran模板得出的⽂章是存在页码的,那么怎么去除这个页码呢?
以下为去掉页码的代码
\pagestyle{empty}  % no page number for the second and the later pages
\thispagestyle{empty} % no page number for the first page
其中,第⼀句是去掉第⼆页及其后各页的页码,第⼆句可以当前页,也就是第⼀页第⼀页的代码。
上两句代码的位置位于
\maketitle
之后即可。