本文主要是介绍IEEE会议论文LaTeX模板中添加页码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
IEEE会议论文模板是没有显示页码的,即采用\documentclass[conference]{IEEEtran}
时不显示页码。
具体原因没太搞明白,明明cls文件中定义了
%% SET UP THE DEFAULT PAGESTYLE
\pagestyle{headings}
\pagenumbering{arabic}
【解决方案】
在\maketitle
之后添加
\maketitle
\thispagestyle{plain} % add page number for the first page
\pagestyle{plain} % add page number for the second and the later pages
参考链接:
- https://blog.csdn.net/qysh123/article/details/126672952
- https://blog.csdn.net/xinhuasz/article/details/43085137
- https://blog.csdn.net/dazuo01/article/details/14051631
这篇关于IEEE会议论文LaTeX模板中添加页码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!