Latex-IEEE模板添加页码

在使用IEEE模板写论文时,发现没有页码下标,所以不知道自己写了多少页。网上找到了以下代码,放在\maketitle之后,就可以在每页下面显示页码了。

1
2
3
4
5
6
7
8
9
10
11
12
13
\maketitle
\thispagestyle{fancy} % IEEE模板在\maketitle后会自动声明\thispagestyle{plain},
% 导致第一页什么都没有。所以得把plain更改为fancy
\lhead{} % 页眉左,需要东西的话就在{}内添加
\chead{} % 页眉中
\rhead{} % 页眉右
\lfoot{} % 页眉左
\cfoot{} % 页眉中
\rfoot{\thepage} %页眉右,\thepage 表示当前页码
\renewcommand{\headrulewidth}{0pt} %改为0pt即可去掉页眉下面的横线
\renewcommand{\footrulewidth}{0pt} %改为0pt即可去掉页脚上面的横线
\pagestyle{fancy}
\rfoot{\thepage}
Thanks for rewarding