IFACconf - 如何在 LaTeX 中包含 ORCID

IFACconf - 如何在 LaTeX 中包含 ORCID

我正在尝试将 OCRID-iD(作者的唯一标识符)添加到 IFAC 会议的 LaTeX 模板中(IFAC 是最大的自动化和控制社区)。然而,尽管社区很大,我却找不到这样做的方法。

指导方针ORCID 状态:

1. 在作者列表中显示:iD 超链接到作者的 ORCID iD URI,紧跟文章首页上的作者姓名。显示 iD 图标的位置应使用 iD 宽度 50% 的缓冲区。

文章标题

ORCIDID 作者列表

我找到了这个好贴这里,但没有任何解决方案起作用(\includegraphics.png,或定义自定义命令以直接显示.svg 文件+超链接):

\documentclass{ifacconf}
\usepackage{scalerel}
\usepackage{tikz}
\usetikzlibrary{svg.path}

\definecolor{orcidlogocol}{HTML}{A6CE39}
\tikzset{
    orcidlogo/.pic={
        \fill[orcidlogocol] svg{M256,128c0,70.7-57.3,128-128,128C57.3,256,0,198.7,0,128C0,57.3,57.3,0,128,0C198.7,0,256,57.3,256,128z};
        \fill[white] svg{M86.3,186.2H70.9V79.1h15.4v48.4V186.2z}
        svg{M108.9,79.1h41.6c39.6,0,57,28.3,57,53.6c0,27.5-21.5,53.6-56.8,53.6h-41.8V79.1z M124.3,172.4h24.5c34.9,0,42.9-26.5,42.9-39.7c0-21.5-13.7-39.7-43.7-39.7h-23.7V172.4z}
        svg{M88.7,56.8c0,5.5-4.5,10.1-10.1,10.1c-5.6,0-10.1-4.6-10.1-10.1c0-5.6,4.5-10.1,10.1-10.1C84.2,46.7,88.7,51.3,88.7,56.8z};
    }
}

\newcommand\orcidicon[1]{\href{https://orcid.org/#1}{\mbox{\scalerel*{
                \begin{tikzpicture}[yscale=-1,transform shape]
                \pic{orcidlogo};
                \end{tikzpicture}
            }{|}}}}

\usepackage{hyperref} %<--- Load after everything else

\begin{document}
    
    \title{Title goes here}
    \author{John Doe \orcidicon{0000-0000-0000-0000}}
    \maketitle
    
\end{document}

其他帖子建议将 ORCID 徽标包含在academicons包中,但这都不起作用

\documentclass{ifacconf}
\usepackage{academicons}

\begin{document}
    
    \title{Title goes here}
    \author{John Doe \aiOrcid}
    \maketitle
    
\end{document}

IFAC 模板可以下载这里(来自本网站https://www.ifac-control.org/events/authors-guide)——其中包括配置文件

我很惊讶我是唯一一个遇到这个问题的人,因为这两个社区都很大,而且通常都使用 LaTeX。有谁有想法或提示吗?

答案1

academicons包裹

您的第二种方法需要xelatexlualatex进行编译。如果这是一个选项,这里有一个 MWE。(我必须加载包natbib以避免编译错误。)

\documentclass{ifacconf}
\usepackage{natbib}
\usepackage{academicons}
\usepackage{xcolor}
\usepackage[hidelinks]{hyperref}

\definecolor{idcolor}{HTML}{A6CE39}
\newcommand{\orcid}[1]{\href{https://orcid.org/#1}{\color{idcolor}\aiOrcid}}

\begin{document}

    \title{Title goes here}
    \author{John Doe \orcid{0000-0000-0000-0000}}
    \maketitle

\end{document}

包含 SVG ORCID 徽标

您可以添加ORCIDiD_iconvector.svg来自ORCID 网站使用svg包。此方法需要inkscape在编译时使用选项PATH(例如,参见--shell-escapepdflatex这里)。

\documentclass{ifacconf}
\usepackage{natbib}
\usepackage{svg}
\usepackage[hidelinks]{hyperref}

\newcommand{\orcid}[1]{\href{https://orcid.org/#1}{\includesvg[height = 2ex]{ORCIDiD_iconvector}}}

\begin{document}
    \title{Title goes here}
    \author{John Doe \orcid{0000-0000-0000-0000}}
    \maketitle
\end{document}

相关内容