From a66b0031e302fc53a3e94a2c80485bbbd923a299 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Sat, 21 Nov 2020 03:01:06 +0000 Subject: CTAN sync 202011210301 --- macros/latex/contrib/acrotex/README.md | 5 +- macros/latex/contrib/acrotex/eforms.dtx | 6 +- macros/latex/contrib/orcidlink/README.md | 51 +++++++++ macros/latex/contrib/orcidlink/orcidlink.dtx | 162 +++++++++++++++++++++++++++ macros/latex/contrib/orcidlink/orcidlink.ins | 57 ++++++++++ macros/latex/contrib/orcidlink/orcidlink.pdf | Bin 0 -> 136645 bytes macros/latex/contrib/xkeyval/README | 6 +- macros/latex/contrib/xkeyval/xkeyval.dtx | 15 +-- macros/latex/contrib/xkeyval/xkeyval.pdf | Bin 492265 -> 492216 bytes 9 files changed, 287 insertions(+), 15 deletions(-) create mode 100644 macros/latex/contrib/orcidlink/README.md create mode 100644 macros/latex/contrib/orcidlink/orcidlink.dtx create mode 100644 macros/latex/contrib/orcidlink/orcidlink.ins create mode 100644 macros/latex/contrib/orcidlink/orcidlink.pdf (limited to 'macros') diff --git a/macros/latex/contrib/acrotex/README.md b/macros/latex/contrib/acrotex/README.md index d84905f9c7..c4c3e1edd7 100644 --- a/macros/latex/contrib/acrotex/README.md +++ b/macros/latex/contrib/acrotex/README.md @@ -1,6 +1,6 @@ The AcroTeX eDucation Bundle Author: D. P. Story -Dated: 2020-11-11 +Dated: 2020-11-20 AeB contains the following: @@ -18,6 +18,9 @@ AeB contains the following: 6) Documentation for AeB (AcroTeX eDucatation Bundle) and eForms (including insdljs and dljslib). + +What's New (2020-11-20) Fixed minor, yet critical, bug converning duplicate +definition of \URI. What's New (2020-11-11) Added new command \SpellCheck, to check the spelling of a fill-in question (exerquiz). Added width, height, scalefactor keys to diff --git a/macros/latex/contrib/acrotex/eforms.dtx b/macros/latex/contrib/acrotex/eforms.dtx index 70e2ab5381..1d51969496 100644 --- a/macros/latex/contrib/acrotex/eforms.dtx +++ b/macros/latex/contrib/acrotex/eforms.dtx @@ -16,7 +16,7 @@ % %\NeedsTeXFormat{LaTeX2e} %\ProvidesPackage{eforms} -% [2020/10/10 v2.3.6 Provides general eforms support (dps)] +% [2020/11/20 v2.3.5 Provides general eforms support (dps)] %<*driver> \documentclass{ltxdoc} \usepackage[colorlinks,hyperindex=false]{hyperref}[2012/10/12] @@ -2424,9 +2424,11 @@ % \begin{macro}{\Next} % \begin{macro}{\toggleAttachmentsPanel} % Convenience commands for writing JavaScript and for executing named events. +% \changes{v2.3.5}{2020/11/20}{Remove \string\cs{URI} from \string\pkg{eforms}, already +% defined in \string\pkg{insdljs}. (Jason G.)} % \begin{macrocode} \providecommand{\JS}[1]{/S/JavaScript/JS(#1)} -\newcommand{\URI}[1]{/S/URI/URI(#1)} +%\newcommand{\URI}[1]{/S/URI/URI(#1)} \providecommand{\Named}[1]{/S/Named/N/#1} \newcommand{\Next}[1]{/Next<<#1>>} \providecommand{\toggleAttachmentsPanel}[2]{% diff --git a/macros/latex/contrib/orcidlink/README.md b/macros/latex/contrib/orcidlink/README.md new file mode 100644 index 0000000000..a5523276a7 --- /dev/null +++ b/macros/latex/contrib/orcidlink/README.md @@ -0,0 +1,51 @@ +# orcidlink-LaTeX-command +LaTeX style file to add a macro for inserting a linked ORCiD logo + +This LaTeX style file just defines a single macro, `\orcidlink`. The code is from [this TeX.SE answer](https://tex.stackexchange.com/a/445583/34063). My only contribution was wrapping it into a style file. + +Installation +------------ + +If `orcidlink` is already provided in your TeX distribution, skip this +section. You should be able to install `orcidlink` from the CTAN via +your distribution's utility (e.g. the TeX Live Utility). +Alternatively, you can get the package from the [source repository on +GitHub](https://github.com/duetosymmetry/orcidlink-LaTeX-command). If +you do not want to do a "full" installation, just copy +[orcidlink.sty](orcidlink.sty) into the same directory as your LaTeX +source. + +Usage +----- + +In your preamble, add: +```latex +\usepackage{orcidlink} +``` +When you want to insert the hyperlinked ORCiD logo, use `\orcidlink{0000-0000-0000-0000}`, replacing the digits with your ORCiD (just the digits, not your whole URL). This is most common in the author list. For example, in a revtex article, you would write e.g. +```latex +\author{Emmy Noether\,\orcidlink{0000-0000-0000-0000}} +... +``` +This will appear as a clickable hyperlink, and will look like this: +![Author LaTeX render preview image](https://raw.githubusercontent.com/duetosymmetry/orcidlink-LaTeX-command/f03c85cd9fe3e40bec5f51b1319b0e9ab30c2e09/preview.png) + +Dependancies +------------ + +This package relies on the following packages: +- [hyperref](https://www.ctan.org/pkg/hyperref) +- [scalerel](https://www.ctan.org/pkg/scalerel) +- [tikz](https://www.ctan.org/pkg/pgf) + +All of these packages are included in the popular [TeX Live](https://www.tug.org/texlive/) distribution, so most users should not have to install anything new. + +Credits +------- + +The original TikZ icon code was created by user [Milo on +TeX.SE](https://tex.stackexchange.com/users/128068/milo). +This package was created and is maintained by [Leo +C. Stein](http://duetosymmetry.com/), (c) 2019. +This material is subject to the [LaTeX Project Public License +1.3c](https://www.ctan.org/license/lppl1.3). diff --git a/macros/latex/contrib/orcidlink/orcidlink.dtx b/macros/latex/contrib/orcidlink/orcidlink.dtx new file mode 100644 index 0000000000..2d6a65fbd8 --- /dev/null +++ b/macros/latex/contrib/orcidlink/orcidlink.dtx @@ -0,0 +1,162 @@ +% \iffalse meta-comment +% +% Copyright (C) 2020 by Leo C. Stein +% --------------------------------------------------------------------------- +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.3 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3 or later is part of all distributions of LaTeX +% version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Leo C. Stein. +% +% This work consists of the files orcidlink.dtx and orcidlink.ins +% and the derived filebase orcidlink.sty. +% +% \fi +% +% \iffalse +%<*driver> +\ProvidesFile{orcidlink.dtx} +% +%\NeedsTeXFormat{LaTeX2e}[1999/12/01] +%\ProvidesPackage{orcidlink} +%<*package> + [2020/11/19 v1.0.0 Linked ORCiD logo macro package] +% +% +%<*driver> +\documentclass{ltxdoc} +\usepackage[dvipsnames]{xcolor} +\usepackage{orcidlink}[2020/11/19] +\hypersetup{colorlinks,urlcolor=NavyBlue,citecolor=NavyBlue,linkcolor=NavyBlue,pdfusetitle} +\usepackage{graphicx} +\EnableCrossrefs +\CodelineIndex +\RecordChanges +\begin{document} + \DocInput{orcidlink.dtx} + \PrintChanges +\end{document} +% +% \fi +% +% \CheckSum{21} +% +% \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 +% Lower-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 +% Digits \0\1\2\3\4\5\6\7\8\9 +% Exclamation \! Double quote \" Hash (number) \# +% Dollar \$ Percent \% Ampersand \& +% Acute accent \' Left paren \( Right paren \) +% Asterisk \* Plus \+ Comma \, +% Minus \- Point \. Solidus \/ +% Colon \: Semicolon \; Less than \< +% Equals \= Greater than \> Question mark \? +% Commercial at \@ Left bracket \[ Backslash \\ +% Right bracket \] Circumflex \^ Underscore \_ +% Grave accent \` Left brace \{ Vertical bar \| +% Right brace \} Tilde \~} +% +% +% \changes{v1.0.0}{2020/11/19}{Converted to DTX file} +% +% \DoNotIndex{\newcommand,\newenvironment} +% +% \GetFileInfo{orcidlink.dtx} +% \title{The \textsf{orcidlink} package} +% \author{Leo C.\ Stein\,\orcidlink{0000-0001-7559-9597} \\ \href{mailto:leo.stein@gmail.com}{leo.stein@gmail.com}} +% \date{\fileversion~from \filedate} +% +% \maketitle +% +% \noindent Source repo: +% \url{https://github.com/duetosymmetry/orcidlink-LaTeX-command}. +% +% \section{Introduction} +% +% This is a LaTeX style file to add a macro for inserting a linked +% ORCiD logo. The package provides exactly one command, |\orcidlink|. +% +% \section{Usage} +% +% To use this package, in the preamble include +% \begin{macrocode} +\usepackage{orcidlink} +% \end{macrocode} +% \DescribeMacro{\orcidlink} +% Insert the ORCiD logo (\orcidlink{}), which is hyperlinked to the URL +% of the researcher whose iD was specified. Usage: +% +|\orcidlink| \marg{orcid}\newline +% Replace the mandatory argument \meta{orcid} with your +% ORCiD --- just the digits, not your whole URL. +% For example, the command +% |\orcidlink{0000-0001-7559-9597}| will hyperlink to the URL +% \url{https://orcid.org/0000-0001-7559-9597}. +% This is most common in +% the author list. For example, in the preamble of a RevTeX article, +% if you write +% \begin{macrocode} +\author{Emmy Noether\,\orcidlink{0000-0000-0000-0000}} +% \end{macrocode} +% then the article byline will look something like this: +% +% \includegraphics[width=0.5\textwidth]{preview}\newline{} +% The macro is used in the author line of this documentation as well. +% +% \StopEventually{} +% +% \section{Implementation} +% +% \iffalse +%<*package> +% \fi +% +% \begin{macrocode} +\NeedsTeXFormat{LaTeX2e}[1994/06/01] +\ProvidesPackage{orcidlink}[2019/12/12 Linked ORCiD logo macro package] +% \end{macrocode} +% All I did was package up Milo's code on TeX.SE, +% see https://tex.stackexchange.com/a/445583/34063 +% \begin{macrocode} +\RequirePackage{hyperref} +\RequirePackage{scalerel} +\RequirePackage{tikz} +\ProcessOptions\relax +\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}; + } +} +% \end{macrocode} +% +% \begin{macro}{\orcidlink} +% \begin{macrocode} +\newcommand\orcidlink[1]{\href{https://orcid.org/#1}{\mbox{\scalerel*{ +\begin{tikzpicture}[yscale=-1,transform shape] +\pic{orcidlogo}; +\end{tikzpicture} +}{|}}}} +\endinput +% \end{macrocode} +% \end{macro} +% + +% +% \iffalse +% +% \fi +% +% \Finale +\endinput diff --git a/macros/latex/contrib/orcidlink/orcidlink.ins b/macros/latex/contrib/orcidlink/orcidlink.ins new file mode 100644 index 0000000000..dcdd43c005 --- /dev/null +++ b/macros/latex/contrib/orcidlink/orcidlink.ins @@ -0,0 +1,57 @@ +%% Copyright (C) 2020 by Leo C. Stein +%% -------------------------------------------------------------------------- +%% This work may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either version 1.3 +%% of this license or (at your option) any later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.3 or later is part of all distributions of LaTeX +%% version 2005/12/01 or later. +%% +%% This work has the LPPL maintenance status `maintained'. +%% +%% The Current Maintainer of this work is Leo C. Stein. +%% +%% This work consists of the files orcidlink.dtx and orcidlink.ins +%% and the derived filebase orcidlink.sty. +%% + +\input docstrip.tex +\keepsilent + +\usedir{tex/latex/orcidlink} + +\preamble + +This is a generated file. + +Copyright (C) 2020 by Leo C. Stein +-------------------------------------------------------------------------- +This work may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3 +of this license or (at your option) any later version. +The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.3 or later is part of all distributions of LaTeX +version 2005/12/01 or later. + +\endpreamble + +\generate{\file{orcidlink.sty}{\from{orcidlink.dtx}{package}}} + +\obeyspaces +\Msg{*************************************************************} +\Msg{* *} +\Msg{* To finish the installation you have to move the following *} +\Msg{* file into a directory searched by TeX: *} +\Msg{* *} +\Msg{* orcidlink.sty *} +\Msg{* *} +\Msg{* To produce the documentation run the file orcidlink.dtx *} +\Msg{* through LaTeX. *} +\Msg{* *} +\Msg{* Happy TeXing! *} +\Msg{* *} +\Msg{*************************************************************} + +\endbatchfile diff --git a/macros/latex/contrib/orcidlink/orcidlink.pdf b/macros/latex/contrib/orcidlink/orcidlink.pdf new file mode 100644 index 0000000000..63cfe12b7e Binary files /dev/null and b/macros/latex/contrib/orcidlink/orcidlink.pdf differ diff --git a/macros/latex/contrib/xkeyval/README b/macros/latex/contrib/xkeyval/README index 1f2a97ca22..bfae33636a 100644 --- a/macros/latex/contrib/xkeyval/README +++ b/macros/latex/contrib/xkeyval/README @@ -1,5 +1,5 @@ -xkeyval v2.7a -------------- +xkeyval v2.8 +------------ This package is an extension of the keyval package by David Carlisle and offers additional macros for setting keys and declaring and @@ -61,7 +61,7 @@ xkeyval into your LaTeX distribution License ------- -Copyright (C) 2004-2014 Hendri Adriaens +Copyright (C) 2004-2020 Hendri Adriaens This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 diff --git a/macros/latex/contrib/xkeyval/xkeyval.dtx b/macros/latex/contrib/xkeyval/xkeyval.dtx index 874701926a..34a01d898b 100644 --- a/macros/latex/contrib/xkeyval/xkeyval.dtx +++ b/macros/latex/contrib/xkeyval/xkeyval.dtx @@ -26,7 +26,7 @@ % pst-xkey.sty % %% --------------------------------------- -%% Copyright (C) 2004-2014 Hendri Adriaens +%% Copyright (C) 2004-2020 Hendri Adriaens %% --------------------------------------- %% %% This work may be distributed and/or modified under the @@ -188,7 +188,7 @@ macro. \PrintChangesX\PrintIndexX % % \GetFileInfo{xkeyval.sty} % -% \CheckSum{3042} +% \CheckSum{3040} % %\DoNotIndex{\:,\@,\@@,\@backslashchar,\@ehc,\@empty,\@expandtwoargs, %\@for,\@forloop,\@fornoop,\@fortmp,\@gobble,\@gobbletwo,\@if,\@ifnch, @@ -3440,7 +3440,7 @@ macro. \PrintChangesX\PrintIndexX %<*xkvlatex> \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesPackage{xkeyval} - [2014/12/03 v2.7a package option processing (HA)] + [2020/11/20 v2.8 package option processing (HA)] % \end{macrocode} % Initializations. Load |xkeyval.tex|, adjust some catcodes to define % internal macros and initialize the |\DeclareOptionX*| working macro. @@ -3457,6 +3457,7 @@ macro. \PrintChangesX\PrintIndexX % \end{macrocode} % \begin{macro}{\XKV@warn} % \begin{macro}{\XKV@err} +% \changes{v2.8}{2020/11/20}{Removed path from search for options of the documentclass} % Warning and error macros. % \begin{macrocode} \def\XKV@warn#1{\PackageWarning{xkeyval}{#1}} @@ -3472,12 +3473,8 @@ macro. \PrintChangesX\PrintIndexX \XKV@whilist\@filelist\XKV@tempa\ifx\XKV@documentclass\@undefined\fi{% \filename@parse\XKV@tempa \ifx\filename@ext\@clsextension - \XKV@ifundefined{opt@\filename@area\filename@base.\filename@ext - }{}{% - \edef\XKV@documentclass{% - \filename@area\filename@base.\filename@ext - }% - }% + \XKV@ifundefined{opt@\filename@base.\filename@ext + }{}{\edef\XKV@documentclass{\filename@base.\filename@ext}}% \fi } % \end{macrocode} diff --git a/macros/latex/contrib/xkeyval/xkeyval.pdf b/macros/latex/contrib/xkeyval/xkeyval.pdf index 336f81eb54..4b1f569696 100644 Binary files a/macros/latex/contrib/xkeyval/xkeyval.pdf and b/macros/latex/contrib/xkeyval/xkeyval.pdf differ -- cgit v1.2.3