一、標題 \title{}html
「Line breaks (\\) may be used to equalize the length of the title lines. Do not use math or other special symbols in the title.」shell
二、做者信息 \author{}app
\author{}內先列做者,後寫\thanks{},最後一個做者和第一個\thanks{}之間不能有空格,各\thanks{}之間也不能有空格,這裏IEEE模板用了一個很機智的方法來避免不當心敲進去的空格,即在末尾加註釋符%ide
\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(腳註)處。this
命令內部不支持多個段落,因此若是要分段的話只能多用幾回\thanks{}就OK了。spa
三、Running Headings (頁眉) \markboth{}code
在頁眉顯示期刊名稱和文章名稱,初稿通常用不到htm
「\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.」blog
四、Publication ID Marks \IEEEpubid{}ip
文章出版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