目前,我正在使用 IEEEtran 文档类撰写研究论文。我的机构提供了 Word 版本的论文模板。它使用 IEEEtran 文档样式,但做了一些修改。其中之一是页眉字体大小。页眉字体大小应为 10pt。IEEEtran 文档类的默认字体大小比我机构提供的论文模板小。那么,我的问题是,如何更改 IEEEtran 文档类的页眉字体大小?
谢谢。
注意:标题包含期刊名称、卷数和页码。
答案1
类IEEEtran
定义并使用宏\@IEEEheaderstyle
和\@IEEEfooterstyle
来设置页眉和页脚的字体。定义取决于选项设置,来自IEEEtran.cls
:
% set up the running headers and footers
%
% header and footer font and size specifications
\def\@IEEEheaderstyle{\normalfont\scriptsize}
\def\@IEEEfooterstyle{\normalfont\scriptsize}
%
% compsoc uses sans-serif headers and footers
\ifCLASSOPTIONcompsoc
\def\@IEEEheaderstyle{\normalfont\sffamily\scriptsize}
\def\@IEEEfooterstyle{\normalfont\sffamily\scriptsize}
\fi
可以重新定义宏来使用比 更大的字体\scriptsize
,例如:
\def\@IEEEheaderstyle{\normalfont\small}
\def\@IEEEfooterstyle{\normalfont\small}