我正在嘗試將 OCRID-iDs(作者的唯一識別碼)包含到 IFAC 會議的 LaTeX 範本中(IFAC 是自動化和控制領域的大型社群)。然而,儘管社區很大,但我找不到這樣做的方法。
這指引ORCID 狀態:
1.作者列表顯示:iD 超連結到作者的 ORCID iD URI,緊接在文章首頁的作者姓名之後。在顯示 iD 圖示的地方,應使用 iD 寬度 50% 的緩衝區。
文章標題
我找到了這個好貼在這裡,但沒有一個解決方案有效(\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)——其中包括ifacconf.cls。
我很驚訝我是唯一遇到這個問題的人,因為這兩個社區都很大並且通常使用 LaTeX。有人有想法或提示嗎?
答案1
academicons
包裹
你的第二種方法需要xelatex
orlualatex
來編譯。如果可以的話,這裡有一個 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-escape
pdflatex
這裡)。
\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}