summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/acronym
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-03-14 03:01:16 +0000
committerNorbert Preining <norbert@preining.info>2020-03-14 03:01:16 +0000
commit942e56ba7d147d18d379305e76f064cec0aade7d (patch)
tree492a4d484f8c9c23d4470ee5c2356dec49dd33d1 /macros/latex/contrib/acronym
parent7f2b2a9d664831db3f6dcb985d3a10212ce3b752 (diff)
CTAN sync 202003140301
Diffstat (limited to 'macros/latex/contrib/acronym')
-rw-r--r--macros/latex/contrib/acronym/CHANGES9
-rw-r--r--macros/latex/contrib/acronym/README7
-rw-r--r--macros/latex/contrib/acronym/acronym.dtx16
-rw-r--r--macros/latex/contrib/acronym/acronym.pdfbin275184 -> 275685 bytes
4 files changed, 25 insertions, 7 deletions
diff --git a/macros/latex/contrib/acronym/CHANGES b/macros/latex/contrib/acronym/CHANGES
index a986a417f9..13914c24e7 100644
--- a/macros/latex/contrib/acronym/CHANGES
+++ b/macros/latex/contrib/acronym/CHANGES
@@ -1,7 +1,16 @@
+Version 1.46 (Mar 2020)
+- Fix merge error
+
+Version 1.45 (Mar 2020)
+
+- Fixed hyperref and "missing aux" regressions
+-- Marcus Meeßen
+
Version 1.44 (Feb 2020)
- added the |printonlyreused| option, which allows to automatically exclude acronyms from the list of acronyms if they are used only once
+-- Marcus Meeßen
Version 1.43 (Feb 2020)
diff --git a/macros/latex/contrib/acronym/README b/macros/latex/contrib/acronym/README
index 92bc92d41b..bd6e3debaf 100644
--- a/macros/latex/contrib/acronym/README
+++ b/macros/latex/contrib/acronym/README
@@ -21,3 +21,10 @@ Files of the `acronym' package:
acronym.ins Installation script generating the source and an example
acronym.pdf PDF Version of the Docs
CHANGES list of changes
+
+If you run into trouble or would like to contribute, please use
+
+https://github.com/oetiker/acronym/
+
+cheers
+tobi
diff --git a/macros/latex/contrib/acronym/acronym.dtx b/macros/latex/contrib/acronym/acronym.dtx
index c64031f7cc..31211759a8 100644
--- a/macros/latex/contrib/acronym/acronym.dtx
+++ b/macros/latex/contrib/acronym/acronym.dtx
@@ -35,7 +35,7 @@
%</driver>
% \fi
%
-% \CheckSum{1518}
+% \CheckSum{1522}
%
%% \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
@@ -82,6 +82,8 @@
% \DoNotIndex{\textbf, \textsf, \textsmaller, \textsuperscript, \the}
% \DoNotIndex{\usepackage}
%
+% \changes{v1.46}{2020/03/13}{Tobi Oetiker \cmd{hskip} Fixed miss merge}
+% \changes{v1.45}{2020/03/13}{Marcus Meeßen \cmd{hskip} Fixed hyperref and "missing aux" regressions.}
% \changes{v1.44}{2020/02/07}{Marcus Meeßen \cmd{hskip} Added the |printonlyreused| option, which allows to automatically exclude acronyms from the list of acronyms if they are used only once}
% \changes{v1.43}{2020/02/05}{Marcus Meeßen \cmd{hskip} Fixed unconventional dots spacing in list of acronyms, enhanced list of acronyms with hyperrefs, and fixed collisions between acronyms and package commands, which can be turned of with the |noacroprefix| option}
% \changes{v1.42}{2019/11/11}{Philippe Chauvat \cmd{hskip} Fix the carriage return with long lines, Tobi Oetiker and Horst Schirmeier fixed usedflag and page number entries for acfi and Acfi}
@@ -677,8 +679,8 @@ blocks to be tested separately. The latter are commonly indicated as
% First we test that we got the right format and name the package.
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}[1999/12/01]
-\ProvidesPackage{acronym}[2020/02/07
- v1.44
+\ProvidesPackage{acronym}[2020/03/13
+ v1.46
Support for acronyms (Tobias Oetiker)]
\RequirePackage{suffix,xstring}
% \end{macrocode}
@@ -1254,14 +1256,14 @@ blocks to be tested separately. The latter are commonly indicated as
\ifAC@printonlyused 1%
\else\ifAC@printonlyreused 1%
\else 0\fi\fi%
- =1%
+ =1\relax%
\ifnum%
\ifAC@printonlyused%
\expandafter\ifx\csname acused@#1@once\endcsname\AC@used 1 \else 0 \fi%
\else\ifAC@printonlyreused%
\expandafter\ifx\csname acused@#1@twice\endcsname\AC@used 1 \else 0 \fi%
\else 0 \fi\fi%
- =1%
+ =1\relax%
\item[\protect\AC@hypertarget{#1}{%
\AC@hyperref[acro:#1]{\aclabelfont{#2}\hfill}%
}]\AC@hyperref[acro:#1]{#3}%
@@ -1436,7 +1438,7 @@ blocks to be tested separately. The latter are commonly indicated as
\fi
}
\newcommand*\AC@Aclp[1]{%
- \@firstupper{\AC@aclp{#1}}%
+ \@firstupper\expandafter{\AC@aclp{#1}}%
}
\newcommand*\AC@acsp[1]{%
\ifcsname fn@#1@PS\endcsname
@@ -1498,7 +1500,7 @@ blocks to be tested separately. The latter are commonly indicated as
% \end{macrocode}
% \begin{macrocode}
\newcommand*\AC@Acl[1]{%
- \@firstupper{\AC@acl{#1}}%
+ \@firstupper\expandafter{\AC@acl{#1}}%
}
% \end{macrocode}
% \end{macro}
diff --git a/macros/latex/contrib/acronym/acronym.pdf b/macros/latex/contrib/acronym/acronym.pdf
index 4d042bc742..411480df9f 100644
--- a/macros/latex/contrib/acronym/acronym.pdf
+++ b/macros/latex/contrib/acronym/acronym.pdf
Binary files differ