diff options
author | Karl Berry <karl@freefriends.org> | 2016-06-18 21:59:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-06-18 21:59:11 +0000 |
commit | 0bac232781697b3a0f1796a6264fd68bffc4a6ee (patch) | |
tree | 5c3e422d9ff194b894d52f71a4d6398d12ddb185 /Master | |
parent | f27f4428dacf3f21f978273d4e174f3e7d27e8ea (diff) |
biblatex-anonymous (18jun16)
git-svn-id: svn://tug.org/texlive/trunk@41485 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf | bin | 54846 -> 57536 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.tex | 9 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty | 15 |
3 files changed, 16 insertions, 8 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 0a26ded6bd1..a237e9065ec 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 f0e3fe5a58a..5702ad6063b 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.2.1}, - date={06/06/2016}, + revision={2.2.2}, + date={18/06/2016}, url={https://github.com/maieul/biblatex-anonymous}} \begin{document} @@ -46,6 +46,7 @@ This package does those things for \bibtype{book}, \bibtype{bookinbook}, \bibty \item Providing a sorting scheme to put all anonymous work at the begining of a bibliography. This sorting scheme is derivated from \verb+nyt+ scheme. \item For French, changing \enquote{\selectlanguage{french}dir.} by \enquote{\selectlanguage{french}éd.}. \item Printing only the author name before the title, and never the editor, even if the book is anonymous. + \item Fixing \biblatex\ bug with \expandafter\cs\expandafter{\prm{xx}cites} command when using anonymous works.\footnote{\url{https://github.com/plk/biblatex/issues/285}.} \end{enumerate} @@ -101,6 +102,10 @@ All issues can be submitted, in French or English, in the GitHub issues page\foo \begin{changelog} +\begin{release}{2.2.2}{2015-06-18} + \item Fix \biblatex\ bug with \expandafter\cs\expandafter{\prm{xx}cites} command when using anonymous works. + \item Fix bug added by version 2.0.0 when not using the \emph{biblatex-realauthor} package. + \end{release} \begin{release}{2.2.1}{2015-06-06} \item Fix compatibility with biblatex < 3.4, broken by v. 2.2.0 \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 76ea5b98409..484df10f44d 100644 --- a/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty +++ b/Master/texmf-dist/tex/latex/biblatex-anonymous/biblatex-anonymous.sty @@ -1,4 +1,4 @@ -%% Copyright 2014 Maïeul Rouquette +%% Copyright 2014-… Maïeul Rouquette % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 @@ -12,11 +12,13 @@ % % The Current Maintainer of this work is Maïeul Rouquette \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{biblatex-anonymous}[2016/06/06 v2.2.1 Manage anonymous works with biblatex] +\ProvidesPackage{biblatex-anonymous}[2016/06/18 v2.2.2 Manage anonymous works with biblatex] %1. Just execute bibliographic option for some entries type -\ExecuteBibliographyOptions[book, bookinbook, bookinarticle, bookinincollection, mvbook,inbook]{useeditor=false,usetranslator=false,userealeditor=false} - +\ExecuteBibliographyOptions[book, bookinbook, bookinarticle, bookinincollection, mvbook,inbook]{useeditor=false,usetranslator=false} +\ifdefined\ifuserealeditor + \ExecuteBibliographyOptions[book, bookinbook, bookinarticle, bookinincollection, mvbook,inbook]{userealeditor=false} +\fi % 2. Sorting \DeclareSortingScheme{anonymous}{ @@ -48,11 +50,12 @@ } %%3.1 And so, prevent the spurious space in case of \cites command -%%% Not for now, waiting from https://github.com/plk/biblatex/issues/285 +%%% Hack suggested on https://github.com/plk/biblatex/issues/285#issuecomment-226918950 +\AtEveryCitekey{\blx@initunit} %4. Tools to prevent inhering author field (require biblatex > 3.4) \ifdefined\DeclareDatafieldSet - + \DeclareDatafieldSet{author}{ \member[field=author] } |