码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-12-23 12:12:26      阅读:961      评论:0      收藏:0      [点我收藏+]

标签:

标题&作者

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
技术分享

技术分享

正文 SECTIONS

1、常用文章层次结构

\section, \subsection, \subsubsection, \paragraph,一般只用到前三层,用不到第四层 \paragraph

2、首字下沉 \IEEEPARstart{W}{ith} ,第一个参数W会变大,占用两行,第二个参数”ith”变会大写。

如代码 \IEEEPARstart{T}{his} demo file is intended to 产生如上图的效果

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

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!