在作者和所属机构编号后添加 ORCID

在作者和所属机构编号后添加 ORCID

我需要在作者列表中插入 ORCID 徽标(应超链接到研究人员的 URL),但我认为在每个作者姓名和所属机构编号后面看起来更干净,如下图所示: 符合我的标准的论文标题和作者列表的屏幕截图

但是,我无法将 ORCID 徽标从作者姓名和所属机构编号之间移开。我使用的是orcid链接来自 CTAN 的包裹如下:

\documentclass{article}

% Package for author affiliations
\usepackage{authblk}

% Package for inserting the ORCID logo
\usepackage{orcidlink}

\title{A great title}

\author[1]{John Doe \orcidlink{0000-0000-0000-0001}}
\author[2]{Jane Doe \orcidlink{0000-0000-0000-0001}}
\author[3]{John Roe \orcidlink{0000-0000-0000-0001}}
\author[1]{Jane Roe \orcidlink{0000-0000-0000-0001}}

\affil[1]{University, City, Country}
\affil[2]{University, City, Country}
\affil[3]{University, City, Country}

\begin{document}
\maketitle

A great paper.

\end{document}

这给了我: 代码编译后的 PDF 文件截图

如您所见,ORCID 徽标的位置不正确。

我怎样才能改变这一点?

答案1

我建议以稍微不同的方式来定义作者和所属机构:

\documentclass{article}
% Package for author affiliations
\usepackage{authblk}

% Package for inserting the ORCID logo
\usepackage{orcidlink}

\title{A great title}

\author{
John Doe $^{1}$\orcidlink{0000-0000-0000-0001},
Jane Doe $^{2}$\orcidlink{0000-0000-0000-0001},
John Roe $^{3}$\orcidlink{0000-0000-0000-0001} and
Jane Roe $^{1}$\orcidlink{0000-0000-0000-0001}}

\affil{
$^{1}$ University, City, Country \\
$^{2}$ University, City, Country \\
$^{3}$ University, City, Country}

\begin{document}
\maketitle

A great paper.

\end{document}

其结果是:

加入后 Orcid

希望有帮助!:)

相关内容