summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-publist/README5
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdfbin358192 -> 358388 bytes
-rw-r--r--Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex10
-rw-r--r--Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx35
-rw-r--r--Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx4
5 files changed, 41 insertions, 13 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-publist/README b/Master/texmf-dist/doc/latex/biblatex-publist/README
index ceb2264c24a..affc7684785 100644
--- a/Master/texmf-dist/doc/latex/biblatex-publist/README
+++ b/Master/texmf-dist/doc/latex/biblatex-publist/README
@@ -45,6 +45,11 @@ instructions.
== CHANGES ==
+* 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.
+
* V. 1.18 (2020-07-31)
- Support name truncation via maxnames.
- Fix mine filter with author lists longer than maxnames.
diff --git a/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf b/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf
index 2e467d8ac24..294ebde335e 100644
--- a/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf
+++ b/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex b/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
index 29fba98258b..61762fd3ea4 100644
--- a/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
+++ b/Master/texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
@@ -102,7 +102,7 @@
\thanks{Please report issues via \protect\url{https://github.com/jspitz/biblatex-publist}.}%
}
-\date{Version 1.18, 2020/07/31}
+\date{Version 1.19, 2020/08/21}
\maketitle
\begin{abstract}
@@ -617,6 +617,14 @@ or
\section{Revision Log}
\begin{description}
+
+ \item [{V. 1.19 (2020-08-21):}]~
+ \begin{itemize}
+ \item Fix parsing of names with initials.
+ \item Fix output of \emph{et al.} in \texttt{byeditor} lists.
+ \item Do not omit names in related entries.
+ \end{itemize}
+
\item [{V. 1.18 (2020-07-31):}]~
\begin{itemize}
\item Support name truncation via \jfoption{maxnames}. See sec.~\ref{sec:trunc}.
diff --git a/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx b/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx
index 41843043321..cb96b21e281 100644
--- a/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx
+++ b/Master/texmf-dist/tex/latex/biblatex-publist/publist.bbx
@@ -25,8 +25,8 @@
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\def\bpl@version{1.18}
-\def\bpl@rdate{2020/07/31}
+\def\bpl@version{1.19}
+\def\bpl@rdate{2020/08/21}
\ProvidesFile{publist.bbx}[\bpl@rdate\space v.\bpl@version\space
biblatex bibliography style (JSP)]
@@ -225,8 +225,7 @@
% and normalize spaces
\def\bpl@normalize#1#2{%
\begingroup
- \def\bibnamedelima{ }%
- \def\bibnamedelimb{ }%
+ \blx@indexnamesetup%
\def\IeC##1{##1}%
\protected@edef\@tempa{#1}%
\gdef\@gtempa{}%
@@ -477,6 +476,12 @@
\DeclareIndexNameFormat[inbook,inproceedings,incollection]{editorfiltered}{}%
+\DeclareDelimFormat{bpl:unfiltered:finalnamedelim}{%
+ \ifnumless{\value{listcount}}{\value{liststop}}%
+ {\multinamedelim}%
+ {\finalnamedelim}%
+}%
+
\DeclareDelimFormat[author]{bplfinalnamedelim}{%
\ifnumgreater{\value{nonplauthors}}{2}{\finalandcomma}{}%
\addspace\bibstring{and}\space}
@@ -582,12 +587,21 @@
}%
}
+% Add hook to check whether we are in a related entry.
+% This is to prevent author omission in such cases.
+\newtoggle{isinrelated}
+\apptocmd{\abx@macro@begrelated}{\global\toggletrue{isinrelated}}{}%
+ {\PackageWarning{biblatex-publist}{Patching begrelated failed!}}
+\apptocmd{\abx@macro@endrelated}{\global\toggletrue{isinrelated}}{}%
+ {\PackageWarning{biblatex-publist}{Patching endrelated failed!}}
+
% Omission/highlighting routine
% (common code for authors and editors)
% \usebibmacro{bpl:handlenames}[author|editor]
\newbibmacro{bpl:handlenames}[1][author]{%
\bpl@ifplauthor{\namepartgiven}{\namepartprefix}{\namepartfamily}%
- {\global\toggletrue{isplauthor}\stepcounter{pl#1}}%
+ {\iftoggle{isinrelated}{\togglefalse{isplauthor}}%
+ {\global\toggletrue{isplauthor}\stepcounter{pl#1}}}%
{\global\togglefalse{isplauthor}}%
%
% Calculate real list stop
@@ -619,7 +633,7 @@
{\ifdefvoid{\namepartgiven}{}{\addcomma\addspace\namepartgiven\isdot\addspace}}%
\fi
}%
- \ifnumequal{\value{listcount}}{\value{liststop}}{}{\usebibmacro{name:andothers}}%
+ \ifnumequal{\value{listcount}}{\value{liststop}}{}{\usebibmacro{bpl:name:andothers}}%
}{%
\ifnumgreater{\value{listcount}}{\value{realliststop}}{}{%
\if@givenfirst% given name first
@@ -640,7 +654,7 @@
{\ifdefvoid{\namepartgiven}{}{\addcomma\addspace\namepartgiven\isdot\addspace}}%
\fi
}%
- \usebibmacro{name:andothers}%
+ \usebibmacro{bpl:name:andothers}%
}%
%
% Second case: plauthorhandling=omit
@@ -670,7 +684,8 @@
\ifnumgreater{\value{listcount}}{\value{realliststop}}{}{%
\ifnumless{\value{nonpl#1}}{\value{nonpl#1s}}%
{\multinamedelim}%
- {\printdelim[#1]{bplfinalnamedelim}}%
+ {\iftoggle{isinrelated}{\printdelim{bpl:unfiltered:finalnamedelim}}%
+ {\printdelim[#1]{bplfinalnamedelim}}}%
}%
}%
}%
@@ -684,7 +699,7 @@
}%
}% <- end FALSE condition
%
- \usebibmacro{name:andothers}%
+ \usebibmacro{bpl:name:andothers}%
\ifthenelse{\value{nonpl#1s}>0\AND\value{listcount}=\value{liststop}}%
{\unspace\bibcloseparen}%
{}%
@@ -824,7 +839,7 @@
\fi% end of \if@hlauthor else condition
}
-\renewbibmacro*{name:andothers}{%
+\newbibmacro*{bpl:name:andothers}{%
\ifthenelse{\value{listcount}=\value{liststop}\AND\value{liststop}>\value{realliststop}}
{%
\ifboolexpr{
diff --git a/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx b/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx
index 62d0525d23f..e638661e673 100644
--- a/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx
+++ b/Master/texmf-dist/tex/latex/biblatex-publist/publist.cbx
@@ -26,8 +26,8 @@
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\def\bpl@version{1.18}
-\def\bpl@rdate{2020/07/31}
+\def\bpl@version{1.19}
+\def\bpl@rdate{2020/08/21}
\ProvidesFile{publist.cbx}[\bpl@rdate\space v.\bpl@version\space
biblatex citation style (JSP)]