IEEE Conference 作者信息Latex模板(Orcid)
在下坂杰
2023年11月03日 22:19
收录于文集
共2篇

IEEE 会议论文作者信息

Latex模板(带Orcid图标及链接)


一、说明

①备忘录,mark一下,以备后面码论文时忘记操作方法,并和大家分享一下。

②基于IEEE官网提供的Latex会议论文模板进行修改,官网上为更新至2019年10月的版本,有需要的可以链接跳转过去下载。(各大期刊官网一般都会提供论文的word及latex模板,可在该模板的基础上,进行个性化的DIY)

https://www.ieee.org/conferences/publishing/templates.html

③修改参考了三位前辈的分享(有需要的可以去查看详细的)

【LaTeX】IEEE模板中作者及单位命令使用:https://blog.csdn.net/tangjiahao10/article/details/125653481

LaTeX如何插入作者的ORCID:https://blog.csdn.net/qq_36654593/article/details/108369354 (该添加orcid的方法为最简单的,但需额外修改超链接配置)

IEEE 中 LaTeX在作者后面加上ORCID标志和链接:https://blog.csdn.net/fanlily913/article/details/123758290 (此方法中超链接的设置弥补了上个方法的不足)


二、使用方法

1、基本模板中作者信息区域在作者数量>3时,由于换行的操作会产生对不齐的效果,完全不美观以及无法使用。在conference撰写中,需基于作者数量选择合适的模板,作者数量≤3时选择多栏格式,作者数量>3时选择长条模式。

为了添加Orcid的功能,需要引入相关package,在最新的宏包orcidlink可见。使用方式为\orcidlink{0000-000x-xxxx-xxxx}。

在导言区中插入代码如下:

\usepackage{orcidlink}

\hypersetup{hidelinks,

colorlinks=true,

allcolors=black,

pdfstartview=Fit,

breaklinks=true}

超链接的设置须有,否则会存在方框。


2、多栏格式(作者数量≤3)

实现效果:

代码如下:(不知道怎么代码块内写,只能这么将就看了)

\author{

\IEEEauthorblockN{1\textsuperscript{st} Given Name Surname }

\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\

\textit{name of organization (of Aff.)}\\

City, Country \\

email address or ORCID \orcidlink{0000-0000-0000-XXXX}}

\and

\IEEEauthorblockN{2\textsuperscript{nd} Given Name Surname}

\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\

\textit{name of organization (of Aff.)}\\

City, Country \\

email address or ORCID \orcidlink{0000-0000-0000-XXXX}}

\and

\IEEEauthorblockN{3\textsuperscript{rd} Given Name Surname}

\IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\

\textit{name of organization (of Aff.)}\\

City, Country \\

email address or ORCID \orcidlink{0000-0000-0000-XXXX}}

}


3、长条格式(作者数量>3)

实现效果:

代码如下:

\author{

\IEEEauthorblockN{

Given Name Surname \orcidlink{0000-0000-0000-XXXX}\IEEEauthorrefmark{1}\textsuperscript{1}, 

Given Name Surname \orcidlink{0000-0000-0000-XXXX}\IEEEauthorrefmark{1}\textsuperscript{2} 

and Given Name Surname\orcidlink{0000-0000-0000-XXXX}\IEEEauthorrefmark{2}\textsuperscript{1}} 

\IEEEauthorblockA{\IEEEauthorrefmark{1}dept. name of organization (of Aff.), name of organization (of Aff.), City, Country\\ 

\textsuperscript{1}email@email, \textsuperscript{2}email@email}

\IEEEauthorblockA{\IEEEauthorrefmark{2}dept. name of organization (of Aff.), name of organization (of Aff.), City, Country\\ 

\textsuperscript{1}email@email }

}

备注:有需要对指定文本进行斜体话操作需求的,可以自行使用\textit{ }函数。

看到可以点个赞,谢谢!有不足之处及可以优化的地方可以指点一下! : )


END