私は、IFAC カンファレンス (IFAC は自動化と制御の最大のコミュニティです) の LaTeX テンプレートに OCRID-iD (著者の一意の識別子) を含めようとしています。しかし、コミュニティが大きいにもかかわらず、それを実現する方法を見つけることができませんでした。
のガイドラインORCIDの状態:
1.著者リストに表示: 著者の ORCID iD URI にハイパーリンクされた iD は、論文の最初のページの著者名の直後に表示されます。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
パッケージ
2 番目のアプローチでは、コンパイルにxelatex
または が必要ですlualatex
。これがオプションである場合は、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}