带有受保护命令和 pdflatex 的 authblk

带有受保护命令和 pdflatex 的 authblk

当尝试使用这个答案要使用该包向作者添加链接图像authblk,使用 pdfLaTeX,以下所有文本都会以某种方式发生移动:

\documentclass{scrartcl}
\usepackage{scalerel}
\usepackage{authblk}
\usepackage{tikz}
\usetikzlibrary{svg.path}

\definecolor{orcidlogocol}{HTML}{A6CE39}
\tikzset{
  blaaa/.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};
  }
x}

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

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

\begin{document}

\title{Title goes here}
\author[1]{Rincewind \protect\orcidicon{8000-0000-0000-0000}\,, Unseen University}
\affil[1]{\small [email protected]}

\maketitle

\end{document}

生成的文件

有没有办法authblk在作者宏中与图像结合?或者是否有另一个包可以让作者具有任意脚注/隶属关系?请注意,这个问题似乎只发生在 pdfLaTeX 上,而不是 XeLaTeX(尽管那里没有超链接)。

答案1

用覆盖修复:

\documentclass{scrartcl}
\usepackage{scalerel}
\usepackage{authblk}
\usepackage{tikz}
\usetikzlibrary{svg.path,calc}

\definecolor{orcidlogocol}{HTML}{A6CE39}
\tikzset{
  blaaa/.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};
  }
x}

\newcommand\orcidicon[1]{\href{https://orcid.org/#1}{\mbox{
\begin{tikzpicture}[ overlay,remember picture]
\coordinate (A);
\coordinate(B) at ($(A)-(7pt,5pt)$);
\end{tikzpicture}
\begin{tikzpicture}[overlay,remember picture,yscale=0.05,xscale=0.05,transform shape]
\pic at (B) {blaaa};
\end{tikzpicture}
}{|}}}

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

\begin{document}

\title{Title goes here}
\author[1]{Rincewind \protect\orcidicon{8000-0000-0000-0000}\,, Unseen University}
\affil[1]{\small [email protected]}

\maketitle

\end{document}

在此处输入图片描述

相关内容