用Latex写学术论文:作者(Author)&摘要(Abstract)

标题&作者

1、标题 itle{}

“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{}内先列作者,后写 hanks{},最后一个作者和第一个 hanks{}之间不能有空格,各 hanks{}之间也不能有空格,这里IEEE模板用了一个很机智的方法来避免不小心敲进去的空格,即在末尾加注释符%

author{Michael~Shell,~IEEEmembership{Member,~IEEE,}
        John~Doe,~IEEEmembership{Fellow,~OSA,}
        and~Jane~Doe,~IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space
	hanks{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
	hanks{J. Doe and J. Doe are with Anonymous University.}% <-this % stops a space
	hanks{Manuscript received April 19, 2005; revised December 27, 2012.}}

hanks{} : 该命令在author{}命令内部使用,说明文稿的录用时间和作者通讯方式,放在footnote(脚注)处。

命令内部不支持多个段落,所以如果要分段的话只能多用几次 hanks{}就OK了。

3、Running Headings (页眉) markboth{}

在页眉显示期刊名称和文章名称,初稿一般用不到

“markboth{Journal of LaTeX Class Files,~Vol.~11, No.~4, December~2012}%
{Shell MakeLowercase{ extit{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.”

摘要&关键词

egin{abstract}
The abstract goes here.
end{abstract}

egin{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{%
egin{abstract}
The abstract goes here.
end{abstract}

egin{IEEEkeywords}
IEEEtran, journal, LaTeX, paper, template.
end{IEEEkeywords}}

% make the title area
maketitle
IEEEdisplaynontitleabstractindextext
IEEEpeerreviewmaketitle
image

image

模版默认关键词的地方写的是Index Terms, 修改关键词为Keywords的方法:在IEEEtran.cls文件中,将 IEEEkeywords的定义改掉就可以了。将defIEEEkeywordsname{Index Terms}改成了defIEEEkeywordsname{Keywords}。参考地址:http://blog.sina.com.cn/s/blog_76c370a20100qw15.html

原文地址:https://www.cnblogs.com/oucsheep/p/4175214.html