diff options
author | Karl Berry <karl@freefriends.org> | 2018-09-02 21:14:44 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-09-02 21:14:44 +0000 |
commit | 0e4d75ce75c5fa5621902da4104e0717694233af (patch) | |
tree | ba418d80d55097538a65336ad31a4528160b6198 /Master/texmf-dist | |
parent | 9583cf8867af613f1621b137c8c6d333b7a778d6 (diff) |
biblatex-anonymous (2sep18)
git-svn-id: svn://tug.org/texlive/trunk@48548 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf | bin | 60172 -> 60311 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex | 7 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty | 28 |
3 files changed, 18 insertions, 17 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf Binary files differindex 9fbb989d2bf..9e0b3e9bf82 100644 --- a/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf +++ b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf diff --git a/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex index d83dde2734e..8da9ce65d26 100644 --- a/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex +++ b/Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex @@ -20,8 +20,8 @@ subtitle={}, email={maieul <at> maieul <dot> net}, author={Maïeul Rouquette}, - revision={2.6.1}, - date={19/11/2017}, + revision={2.6.2}, + date={02/09/2018}, url={https://github.com/maieul/biblatex-anonymous}} \begin{document} @@ -105,6 +105,9 @@ All issues can be submitted, in French or English, in the GitHub issues page\foo \begin{changelog} +\begin{release}{2.6.2}{2018-09-02} + \item Fix \verb+anonymous+manuscripts+ sorting scheme. +\end{release} \begin{release}{2.6.1}{2017-11-19} \item Improve compatibility with biblatex 3.8. \end{release} diff --git a/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty b/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty index c64eb651547..a703ba40c53 100644 --- a/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty +++ b/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty @@ -12,7 +12,7 @@ % % The Current Maintainer of this work is Maïeul Rouquette \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{biblatex-anonymous}[2017/11/19 v2.6.1 Manage anonymous works with biblatex] +\ProvidesPackage{biblatex-anonymous}[2018/09/02 v2.6.2 Manage anonymous works with biblatex] %1. Just execute bibliographic option for some entries type \ExecuteBibliographyOptions[% @@ -97,21 +97,19 @@ \bbx@anonymous@sorting } -\AtEndPreamble{ - \ifundef{\bbx@manuscripts@sorting}{}% - { - \DeclareSortingTemplate{anonymous+manuscripts}{ - \sort{ - \field{presort} - } - \sort[final]{ - \field{sortkey} - } - \bbx@anonymous@sorting - \bbx@manuscripts@sorting - } +\ifundef{\bbx@manuscripts@sorting}{}% + { + \DeclareSortingTemplate{anonymous+manuscripts}{ + \sort{ + \field{presort} } -} + \sort[final]{ + \field{sortkey} + } + \bbx@anonymous@sorting + \bbx@manuscripts@sorting + } + } %%3.1 And so, prevent the spurious space in case of \cites command %%% Hack suggested on https://github.com/plk/biblatex/issues/285#issuecomment-226918950 |