標題&作者
1、標題 \title{}
“Line breaks (\\) may be used to equalize the length of the title lines. Do not use math or other special symbols in the title.”
2、作者信息 \author{}
\author{}內先列作者,后寫\thanks{},最后一個作者和第一個\thanks{}之間不能有空格,各\thanks{}之間也不能有空格,這里IEEE模板用了一個很機智的方法來避免不小心敲進去的空格,即在末尾加注釋符%
\author{Michael~Shell,~\IEEEmembership{Member,~IEEE,} John~Doe,~\IEEEmembership{Fellow,~OSA,} and~Jane~Doe,~\IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space \thanks{M. Shell is with the Department of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta, GA, 30332 USA e-mail: (see http://www.michaelshell.org/contact.html).}% <-this % stops a space \thanks{J. Doe and J. Doe are with Anonymous University.}% <-this % stops a space \thanks{Manuscript received April 19, 2005; revised December 27, 2012.}}
\thanks{} : 該命令在\author{}命令內部使用,說明文稿的錄用時間和作者通訊方式,放在footnote(腳注)處。
命令內部不支持多個段落,所以如果要分段的話只能多用幾次\thanks{}就OK了。
3、Running Headings (頁眉) \markboth{}
在頁眉顯示期刊名稱和文章名稱,初稿一般用不到
“\markboth{Journal of \LaTeX\ Class Files,~Vol.~11, No.~4, December~2012}%
{Shell \MakeLowercase{\textit{et al.}}: Bare Demo of IEEEtran.cls for Journals}
% The only time the second header will appear is for the odd numbered pages
% after the title page when using the twoside option.”
4、Publication ID Marks \IEEEpubid{}
文章出版ID,初稿用不到,錄用之后才會有,但是之前可以在論文中給它留空
“If \IEEEpubid{} is used, a second command, \IEEEpubidad
jcol must be issued somewhere in the second column of the
title page.”
摘要&關鍵詞
\begin{abstract} The abstract goes here. \end{abstract} \begin{IEEEkeywords} IEEEtran, journal, \LaTeX, paper, template. \end{IEEEkeywords}
利用以上代碼(模板bare_jrnl中有),摘要和關鍵詞會在雙欄排版中位於第一欄,在正文第一段之前,但有的期刊要求摘要和關鍵詞緊挨作者橫跨兩欄,如 The Computer Society and TRANSACTIONS ON MAGNETICS
此時使用組合\IEEEtitleabstractindextext{}和\IEEEdisplaynontitleabstractindextext 可以根據\document 中要求的文本環境自動改變摘要和關鍵詞的位置,前者使用時需將摘要命令和關鍵詞命令放到其括號里,后者放在
\maketitle 和 \IEEEpeerreviewmaketitle 命令之間。以下是bare_jrnl_transmag 中的代碼,如果使用\documentclass[journal,transmag]{IEEEtran}則摘要關鍵詞不分欄,使用\documentclass[journal]{IEEEtran}則分欄,大家可以試試。以下兩圖分別是摘要不分欄和摘要分欄的效果。
\IEEEtitleabstractindextext{% \begin{abstract} The abstract goes here. \end{abstract} \begin{IEEEkeywords} IEEEtran, journal, \LaTeX, paper, template. \end{IEEEkeywords}} % make the title area \maketitle \IEEEdisplaynontitleabstractindextext \IEEEpeerreviewmaketitle
模版默認關鍵詞的地方寫的是Index Terms, 修改關鍵詞為Keywords的方法:在IEEEtran.cls文件中,將 IEEEkeywords的定義改掉就可以了。將\def\IEEEkeywordsname{Index Terms}改成了\def\IEEEkeywordsname{Keywords}。參考地址:http://blog.sina.com.cn/s/blog_76c370a20100qw15.html