texlive[56351] Master/texmf-dist: biblatex-publist (15sep20)

commits+karl at tug.org commits+karl at tug.org
Tue Sep 15 23:05:31 CEST 2020


Revision: 56351
          http://tug.org/svn/texlive?view=revision&revision=56351
Author:   karl
Date:     2020-09-15 23:05:30 +0200 (Tue, 15 Sep 2020)
Log Message:
-----------
biblatex-publist (15sep20)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/biblatex-publist/README
    trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf
    trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
    trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx
    trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx

Modified: trunk/Master/texmf-dist/doc/latex/biblatex-publist/README
===================================================================
--- trunk/Master/texmf-dist/doc/latex/biblatex-publist/README	2020-09-15 21:04:57 UTC (rev 56350)
+++ trunk/Master/texmf-dist/doc/latex/biblatex-publist/README	2020-09-15 21:05:30 UTC (rev 56351)
@@ -45,7 +45,10 @@
 
 == CHANGES ==
 
-* V 1.19 (2020-08-21)
+* V. 1.20 (2020-09-15)
+	- Do not output "(with <authors>)" if no plauthor is among the authors.
+
+* V. 1.19 (2020-08-21)
 	- Fix parsing of name with initials (#24).
 	- Fix output of et al. in byeditor lists.
 	- Do not omit names in related entries.

Modified: trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex	2020-09-15 21:04:57 UTC (rev 56350)
+++ trunk/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex	2020-09-15 21:05:30 UTC (rev 56351)
@@ -102,7 +102,7 @@
 \thanks{Please report issues via \protect\url{https://github.com/jspitz/biblatex-publist}.}%
 }
 
-\date{Version 1.19, 2020/08/21}
+\date{Version 1.20, 2020/09/15}
 \maketitle
 
 \begin{abstract}
@@ -618,6 +618,12 @@
 
 \begin{description}
 
+	\item [{V. 1.20 (2020-09-15):}]~
+	\begin{itemize}
+		\item Do not output \emph{(with <authors>)} if no publist author
+		      is among the authors.
+	\end{itemize}
+
 	\item [{V. 1.19 (2020-08-21):}]~
 	\begin{itemize}
 		\item Fix parsing of names with initials.
@@ -830,10 +836,11 @@
 Thanks go to Enrico Gregorio (egreg on \emph{tex.stackexchange.com})
 for helping me with correct name parsing (actually, the code the package
 uses is completely his), user gusbrs on \emph{tex.stackexchange.com},
-Marko Budi\xA8i\'{c}, Clea F. Rees, Yannick Kalff and many other users for
-testing and bug reports, Nicolas Markey for \emph{publist.bst} and of
-course Philipp Lehman and the current \bibltx\ team (Philipp Kime,
-Moritz Wemheuer, Audrey Boruvka and Joseph Wright) for \bibltx.
+Marko Budi\xA8i\'{c}, Clea F. Rees, Yannick Kalff, Moritz Wemheuer and many
+other users for testing, bug reports and suggestions, Nicolas Markey for
+\emph{publist.bst} and of course Philipp Lehman and the current
+\bibltx\ team (Philipp Kime, Moritz Wemheuer, Audrey Boruvka and
+Joseph Wright) for \bibltx.
 
 \begin{thebibliography}{1}
 \bibitem{bibltx}Lehman, Philipp (with Audrey Boruvka, Philip Kime

Modified: trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx
===================================================================
--- trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx	2020-09-15 21:04:57 UTC (rev 56350)
+++ trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx	2020-09-15 21:05:30 UTC (rev 56351)
@@ -25,8 +25,8 @@
 %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-\def\bpl at version{1.19}
-\def\bpl at rdate{2020/08/21}
+\def\bpl at version{1.20}
+\def\bpl at rdate{2020/09/15}
 
 \ProvidesFile{publist.bbx}[\bpl at rdate\space v.\bpl at version\space
                            biblatex bibliography style (JSP)]
@@ -660,7 +660,7 @@
     % Second case: plauthorhandling=omit
     \else% \if at hlauthor false
         \ifthenelse{\value{listcount}=1}%
-            {\ifthenelse{\value{nonpl#1s}>0}%
+            {\ifthenelse{\value{nonpl#1s}>0\AND{\value{pl#1s}}>0}%
                  {\bibopenparen\bibstring{with}\addspace}%
                  {}%
              \iftoggle{isplauthor}%
@@ -700,7 +700,7 @@
             }% <- end FALSE condition
         %
         \usebibmacro{bpl:name:andothers}%
-        \ifthenelse{\value{nonpl#1s}>0\AND\value{listcount}=\value{liststop}}%
+        \ifthenelse{\value{nonpl#1s}>0\AND{\value{pl#1s}}>0\AND\value{listcount}=\value{liststop}}%
             {\unspace\bibcloseparen}%
             {}%
     \fi% end of \if at hlauthor else condition

Modified: trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx
===================================================================
--- trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx	2020-09-15 21:04:57 UTC (rev 56350)
+++ trunk/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx	2020-09-15 21:05:30 UTC (rev 56351)
@@ -26,8 +26,8 @@
 %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
-\def\bpl at version{1.19}
-\def\bpl at rdate{2020/08/21}
+\def\bpl at version{1.20}
+\def\bpl at rdate{2020/09/15}
 
 \ProvidesFile{publist.cbx}[\bpl at rdate\space v.\bpl at version\space
                            biblatex citation style (JSP)]



More information about the tex-live-commits mailing list.