diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx b/Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx index 5677b16828b..32c12f7cb7a 100644 --- a/Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx +++ b/Master/texmf-dist/source/latex/biblatex-oxref/oxref.dtx @@ -1,6 +1,6 @@ % \iffalse %<*internal|bbx|cbx|dbx|lbx|doc> -\def\Version{2020/01/27 v2.0.1} +\def\Version{2020/10/19 v2.1} %</internal|bbx|cbx|dbx|lbx|doc> %<*internal> \iffalse @@ -5334,7 +5334,7 @@ The \emph{Oxford Guide to Style} prints all information about the transmission, \section{Images and works of art} -\tip{If you need the type of image or arrtwork to appear in square brackets, +\tip{If you need the type of image or artwork to appear in square brackets, put it in \code{titleaddon}. Otherwise, put it in \code{type}.} \tip{Use \code{institution} (a list) or \code{venue} (a literal) for the @@ -12142,21 +12142,21 @@ reference,mvreference,inreference]{volume}{% % \subsubsection{Related editions} % % This macro is based on the \enquote{bytranslator} one, but more general. +% Note that |\mkrelatedstringtext| was introduced in \pkg{biblatex} v3.16, +% so we backport it if an earlier version is used. % % \begin{macrocode} +\providecommand*{\mkrelatedstringtext}[1]{{{\mainlang #1}}} \newbibmacro*{related:editedas}[1]{% \entrydata{#1}{% \renewbibmacro*{name:hook}[1]{% - \ifnumequal{\value{listcount}}{1}{% - \begingroup - \mkrelatedstring% - \lbx@initnamehook{#1}% - \endgroup - }{}}% + \ifnumequal{\value{listcount}}{1} + {\mkrelatedstringtext{\lbx@initnamehook{#1}}} + {}}% \printfield{edition}% \setunit{\addspace}% \usebibmacro{byeditor+others}% - \setunit*{\addcomma\space\bibstring[\mkrelatedstring]{astitle}\space}% + \setunit*{\addcomma\space\bibstring[\mkrelatedstringtext]{astitle}\space}% \usebibmacro{maintitle+title}% \setunit{\addspace}% \printfield{note}% @@ -12168,13 +12168,10 @@ reference,mvreference,inreference]{volume}{% \entrydata{#1}{% \renewbibmacro*{name:hook}[1]{% \ifnumequal{\value{listcount}}{1} - {\begingroup - \mkrelatedstring% - \lbx@initnamehook{#1}% - \endgroup} + {\mkrelatedstringtext{\lbx@initnamehook{#1}}} {}}% \printnames[bytranslator]{translator}% - \setunit*{\addspace\bibstring[\mkrelatedstring]{astitle}\space}% + \setunit*{\addspace\bibstring[\mkrelatedstringtext]{astitle}\space}% \usebibmacro{maintitle+title}% \setunit{\addspace}% \printfield{note}% |