texlive[42390] Master/texmf-dist: biblatex-realauthor
commits+karl at tug.org
commits+karl at tug.org
Sun Oct 30 22:54:46 CET 2016
Revision: 42390
http://tug.org/svn/texlive?view=revision&revision=42390
Author: karl
Date: 2016-10-30 22:54:46 +0100 (Sun, 30 Oct 2016)
Log Message:
-----------
biblatex-realauthor
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf
trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex
trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf
trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.bbx
trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.dbx
Modified: trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex 2016-10-30 21:48:54 UTC (rev 42389)
+++ trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex 2016-10-30 21:54:46 UTC (rev 42390)
@@ -9,6 +9,7 @@
\usepackage{shortvrb}
\usepackage{pifont}
\usepackage{minted}
+\setminted{breaklines}
% Usefull commands
\newcommand{\biblatex}{biblatex\xspace}
\pretocmd{\bibfield}{\sloppy}{}{}
@@ -20,8 +21,8 @@
subtitle={New data field},
email={maieul <at> maieul <dot> net},
author={Maïeul Rouquette},
- revision={2.6.0},
- date={08/09/2016},
+ revision={2.7.0},
+ date={23/10/2016},
url={https://github.com/maieul/biblatex-realauthor}}
% biblatex
@@ -106,6 +107,9 @@
\end{itemize}
See the example file to have an illustration.
+
+ +The package also provides \verb-realauthor+manuscripts- and \verb-realauthor+anonymous+manuscripts- sorting schemes to use in combination with the \emph{biblatex-manuscripts-philology} package (please read handbook of this package for more details about it).
+
\section{Disable realauthor use}\label{userealauthor}
The package, or rather \biblatex, defines an \verb+userealauthor+ option, which can be settable on a per-entry basis in the \bibfield{options} field, or by entrytype, using \cmd{ExecuteBibliographyOptions}, or globally, when loading \biblatex.
@@ -154,8 +158,13 @@
\section{Change history}
\begin{changelog}
+
+\begin{release}{2.7.0}{2016-10-23}
+ \item New sorting schemes.
+\end{release}
+
\begin{release}{2.6.0}{2016-09-08}
- \item Take account of \bibtype{realauthor} to manage dash in bibliography.
+ \item Take account of \bibfield{realauthor} to manage dash in bibliography.
\item Require \biblatex\ 3.5.
\end{release}
@@ -188,7 +197,7 @@
\end{release}
\begin{release}{2.1.0}{2014-10-30}
- \item Add new \verb|realauthor| scheme. \see{sorting}
+ \item Add new \verb|realauthor| sorting scheme. \see{sorting}
\end{release}
Modified: trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.bbx
===================================================================
--- trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.bbx 2016-10-30 21:48:54 UTC (rev 42389)
+++ trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.bbx 2016-10-30 21:54:46 UTC (rev 42390)
@@ -13,7 +13,7 @@
% The Current Maintainer of this work is Maïeul Rouquette
% This work consists of the files realauthor.dbx, realauthor.bbx
\ProvidesFile{realauthor.dbx}
-[2016/09/08 v2.6.0 biblatex bibliography style (MR)]
+[2016/10/23 v2.7.0 biblatex bibliography style (MR)]
\ifdef{\biblatexmultipledm at bibstyle}
{\RequireBibliographyStyle{\biblatexmultipledm at bibstyle}}
@@ -307,14 +307,7 @@
}
% Sorting
-
-\DeclareSortingScheme{realauthor}{
- \sort{
- \field{presort}
- }
- \sort[final]{
- \field{sortkey}
- }
+\def\bbx at realauthor@sorting{
\sort{
\field{sortname}
\field{author}
@@ -339,13 +332,7 @@
}
}
-\DeclareSortingScheme{anonymous+realauthor}{
- \sort{
- \field{presort}
- }
- \sort[final]{
- \field{sortkey}
- }
+\def\bbx at realauthor@sorting at anonymous{
\sort{
\field{sortname}
\field{author}
@@ -369,5 +356,51 @@
}
}
+\DeclareSortingScheme{realauthor}{
+ \sort{
+ \field{presort}
+ }
+ \sort[final]{
+ \field{sortkey}
+ }
+ \bbx at realauthor@sorting
+}
+\DeclareSortingScheme{anonymous+realauthor}{
+ \sort{
+ \field{presort}
+ }
+ \sort[final]{
+ \field{sortkey}
+ }
+ \bbx at realauthor@sorting at anonymous
+}
+
+
+\AtEndPreamble{
+ \ifundef{\bbx at manuscripts@sorting}{}%
+ {
+ \DeclareSortingScheme{realauthor+manuscripts}{
+ \sort{
+ \field{presort}
+ }
+ \sort[final]{
+ \field{sortkey}
+ }
+ \bbx at realauthor@sorting
+ \bbx at manuscripts@sorting
+ }
+ \DeclareSortingScheme{anonymous+realauthor+manuscripts}{
+ \sort{
+ \field{presort}
+ }
+ \sort[final]{
+ \field{sortkey}
+ }
+ \bbx at realauthor@sorting at anonymous
+ \bbx at manuscripts@sorting
+ }
+ }
+}
+
\endinput
Modified: trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.dbx
===================================================================
--- trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.dbx 2016-10-30 21:48:54 UTC (rev 42389)
+++ trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.dbx 2016-10-30 21:54:46 UTC (rev 42390)
@@ -13,7 +13,7 @@
% The Current Maintainer of this work is Maïeul Rouquette
% This work consists of the files realauthor.dbx, realauthor.bbx
\ProvidesFile{realauthor.dbx}
-[2016/09/08 v2.6.0 biblatex bibliography style (MR)]
+[2016/10/23 v2.7.0 biblatex bibliography style (MR)]
\DeclareDatamodelFields[type=list,datatype=name]{realauthor,realeditor}
\DeclareDatamodelEntryfields{realauthor,realeditor}
More information about the tex-live-commits
mailing list