IEEEtran 类中奇数页的第二个标题?

IEEEtran 类中奇数页的第二个标题?

如何在课堂奇数页中获取第二个标题IEEEtran?按照示例代码,我正在努力解决。

我应该将“SKM:我的 IEEE 文章”放在从 3、5、7 开始的奇数页上……

\documentclass{IEEEtran}
\usepackage{lipsum}
\usepackage{cite,graphicx,amssymb,amsfonts,booktabs,multirow,array,comment}
\usepackage[cmex10]{amsmath}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage[all,graph]{xy}
\title{Affect of Motion Direction}
\author
{\IEEEauthorblockN{SKM}
\IEEEauthorblockA{Faculty of Electrical Engineering\\
University of XYZ\\
[email protected]}
}
\markboth{IEEE Transactions on \LaTeX}{SKM: My IEEE article}

\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\lipsum[1-10]
\lipsum[1-10]
\end{document}

答案1

默认情况下,IEEEtran文章使用onesideclass 选项,这意味着只使用左侧标题。要实际使用\markboth,只需调用以下命令twoside即可:

\documentclass[twoside]{IEEEtran}

脚注:

在我看来,调用\markboth应该将类选项默认为twoside,但我不是类架构师。

来源:阅读IEEEtran.cls文件代码。

相关内容