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

标题&作者

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
复制代码
image

image

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

posted @   不锈钢老鼠  阅读(130076)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示