NTU-NCS-lab / IEEE-Journal-Template

MIT License
0 stars 0 forks source link

Headings for ARIS #1

Open sciyen opened 3 months ago

sciyen commented 3 months ago

Since ieeeconf.cls disabled the heading, i.e., \markboth, \leftmark, and \rightmark functions, the heading required by International Conference on Advanced Robotics and Intelligent System 2024 (ARIS 2024) can not be achieved by the original style sheet.

To force this feature on, replace the following lines at 3157, 3183, and 3211 (roughly) in the original ieeeconf.cls:

\if@confmode
    % \def\@oddhead{}
    % \def\@evenhead{}
    \def\@oddhead{\color{gray}\raisebox{1.5ex}[1.5ex]{\hbox{}\normalsize\leftmark \hfil}}%
    \def\@evenhead{\color{gray}\raisebox{1.5ex}[1.5ex]{\hfil \leftmark\hbox{}}}%

and then add the following lines in your main.tex

\markboth{\begin{minipage}[b]{\textwidth}2024 International Conference on Advanced Robotics and Intelligent Systems (ARIS 2024)\\National Taiwan University, Taipei 106319, Taiwan, August 22-24, 2024\\\end{minipage}}{}

However, it is not a formal style in IEEE conference paper, so I will not commit these changes into the repo.

richard98hess444 commented 3 months ago

Well done! Glad to see the improvement!