用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

模版默认关键词的地方写的是Index Terms, 修改关键词为Keywords的方法:在IEEEtran.cls文件中,将 IEEEkeywords的定义改掉就可以了。将\def\IEEEkeywordsname{Index Terms}改成了\def\IEEEkeywordsname{Keywords}。

  • 10
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本
LaTeX中,如果多个作者属于同一机构,可以使用ACM模板中的\authornote命令来实现。具体步骤如下: 1. 在导言区添加以下代码: ``` \usepackage{authblk} ``` 2. 在作者信息部分,使用\author命令为每个作者添加姓名,并使用\affiliation命令为他们指定相同的机构。例如: ``` \author{Author 1} \affiliation{Institution Name} \author{Author 2} \affiliation{Institution Name} ``` 3. 在文档的其他部分,可以使用\authornote命令为作者添加附加信息,例如邮箱地址或其他联系方式。例如: ``` \authornote{Email: author[email protected]} ``` 这样,多个作者就可以被指定为同一机构,并且可以为每个作者添加附加信息。请注意,这个方法适用于ACM模板,对于其他模板可能会有所不同。\[2\] #### 引用[.reference_title] - *1* *3* [用ACM LaTeX最新模板(acmart)时遇到的作者单位和地址无法合并的问题](https://blog.csdn.net/qysh123/article/details/81187215)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [如何使用Latex 好一篇优秀的英文论文](https://blog.csdn.net/qq_37645194/article/details/113854627)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值