diff options
author | Karl Berry <karl@freefriends.org> | 2021-03-16 22:13:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-03-16 22:13:54 +0000 |
commit | 4793e0a45d5f0c8cab35a90470ee8f56abda1aef (patch) | |
tree | 1b8d5a62d94214abff5e34bb560df1bcca3a8e2c /Master/texmf-dist/source/latex | |
parent | d33689322dcb335685d90e2ff7e609389c818d77 (diff) |
orcidlink (16mar21) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2020.0@58446 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex')
-rw-r--r-- | Master/texmf-dist/source/latex/orcidlink/orcidlink.dtx | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/Master/texmf-dist/source/latex/orcidlink/orcidlink.dtx b/Master/texmf-dist/source/latex/orcidlink/orcidlink.dtx index 016d225d0c4..7f34baa2fce 100644 --- a/Master/texmf-dist/source/latex/orcidlink/orcidlink.dtx +++ b/Master/texmf-dist/source/latex/orcidlink/orcidlink.dtx @@ -27,7 +27,7 @@ %<*driver> \documentclass{ltxdoc} \usepackage[dvipsnames]{xcolor} -\usepackage{orcidlink}[2020/11/21] +\usepackage{orcidlink}[2021/03/15] \hypersetup{colorlinks,urlcolor=NavyBlue,citecolor=NavyBlue,linkcolor=NavyBlue,pdfusetitle} \usepackage{graphicx} \EnableCrossrefs @@ -40,7 +40,7 @@ %</driver> % \fi % -% \CheckSum{22} +% \CheckSum{32} % % \CharacterTable % {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z @@ -63,6 +63,8 @@ % \changes{v1.0.1}{2020/11/21}{Bugfix due to misunderstanding of docstrip} % \changes{v1.0.2}{2020/11/21}{Fix fragility of command when inside of % author, and combined with hyperref's option pdfusetitle} +% \changes{v1.0.3}{2021/03/15}{Improve fragility by calculating +% scaling ourselves, and using DeclareRobustCommand} % % \DoNotIndex{\newcommand,\newenvironment} % @@ -84,15 +86,13 @@ % \section{Usage} % % To use this package, in the preamble include -% \begin{macrocode} +% \begin{verbatim} % \usepackage{orcidlink} -% \end{macrocode} +% \end{verbatim} % -% \DescribeMacro{\orcidlink} +% \DescribeMacro{\orcidlink\marg{orcid}} % Insert the ORCiD logo (\orcidlink{}), which is hyperlinked to the URL -% of the researcher whose iD was specified. Usage: -% -% |\orcidlink| \marg{orcid}\newline +% of the researcher whose iD was specified. % Replace the mandatory argument \meta{orcid} with your % ORCiD --- just the digits, not your whole URL. % For example, the command @@ -101,9 +101,9 @@ % This is most common in % the author list. For example, in the preamble of a RevTeX article, % if you write -% \begin{macrocode} +% \begin{verbatim} % \author{Emmy Noether\,\orcidlink{0000-0000-0000-0000}} -% \end{macrocode} +% \end{verbatim} % then the article byline will look something like this: % % \includegraphics[width=0.5\textwidth]{preview}\newline{} @@ -120,12 +120,11 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[1994/06/01] \ProvidesPackage{orcidlink} - [2020/11/21 v1.0.2 Linked ORCiD logo macro package] + [2021/03/15 v1.0.3 Linked ORCiD logo macro package] %% All I did was package up Milo's code on TeX.SE, %% see https://tex.stackexchange.com/a/445583/34063 \RequirePackage{hyperref} -\RequirePackage{scalerel} \RequirePackage{tikz} \ProcessOptions\relax @@ -141,16 +140,27 @@ 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}; } } + +%% Reciprocal of the height of the svg whose source is above. The +%% original generates a 256pt high graphic; this macro holds 1/256. +\newcommand{\@OrigHeightRecip}{0.00390625} + +%% We will compute the current X height to make the logo the right height +\newlength{\@curXheight} + % \end{macrocode} % % \begin{macro}{\orcidlink} % \begin{macrocode} - -\newcommand\orcidlink[1]{\texorpdfstring{\href{https://orcid.org/#1}{\mbox{\scalerel*{ -\begin{tikzpicture}[yscale=-1,transform shape] +\DeclareRobustCommand\orcidlink[1]{% +\texorpdfstring{% +\setlength{\@curXheight}{\fontcharht\font`X}% +\href{https://orcid.org/#1}{\mbox{% +\begin{tikzpicture}[yscale=-\@OrigHeightRecip*\@curXheight, +xscale=\@OrigHeightRecip*\@curXheight,transform shape] \pic{orcidlogo}; -\end{tikzpicture} -}{|}}}}{}} +\end{tikzpicture}% +}}}{}} \endinput % \end{macrocode} |