diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex/RELEASE')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex/RELEASE | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex/RELEASE b/Master/texmf-dist/doc/latex/biblatex/RELEASE index f52473f346b..6dd58f4bd92 100644 --- a/Master/texmf-dist/doc/latex/biblatex/RELEASE +++ b/Master/texmf-dist/doc/latex/biblatex/RELEASE @@ -1,3 +1,35 @@ +RELEASE NOTES FOR VERSION 2.4 + +* Biber version 1.4 is required for biblatex 2.4 + +* New macro \DeclareStyleSourcemap for style authors who want to define source mappings which + are not changed by users using \DeclareSourcemap. Style maps so defined are run after user + mappings and before driver default mappings. + +* New RELATEDOPTIONS field giving more control over the exact options for related entry processing + +* INCOMPATIBLE CHANGE - \DeclareLabelname, \DeclareLabelTitle and \DeclareLabelyear now have + a different syntax in order to prepare for future multi-script support. The change is minor - + just wrap all fields in \field{} and don't use any commas to separate fields. For example, the + default definition of \DeclareLabelname was: + + \DeclareLabelname{% + shortauthor, + author, + shorteditor, + editor, + translator} + + and is now: + + \DeclareLabelname{% + \field{shortauthor} + \field{author} + \field{shorteditor} + \field{editor} + \field{translator} + } + RELEASE NOTES FOR VERSION 2.3 * Biber version 1.3 is required for biblatex 2.3 |