summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/biblatex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-04-02 23:32:37 +0000
committerKarl Berry <karl@freefriends.org>2011-04-02 23:32:37 +0000
commit765026f4d90f6962b8a1bf9e9aecb1d70ae95f0a (patch)
treeab3659349c7ccfc12252888783509905ea041761 /Master/texmf-dist/doc/latex/biblatex
parent5ef548762bb0e9f317aec1ec1e357e07caac1932 (diff)
biblatex 1.4 (1apr11)
git-svn-id: svn://tug.org/texlive/trunk@21926 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex')
-rw-r--r--Master/texmf-dist/doc/latex/biblatex/README2
-rw-r--r--Master/texmf-dist/doc/latex/biblatex/RELEASE156
-rw-r--r--Master/texmf-dist/doc/latex/biblatex/biblatex.pdfbin807967 -> 800151 bytes
-rw-r--r--Master/texmf-dist/doc/latex/biblatex/biblatex.tex747
4 files changed, 561 insertions, 344 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex/README b/Master/texmf-dist/doc/latex/biblatex/README
index 07bc126d967..df444a79aed 100644
--- a/Master/texmf-dist/doc/latex/biblatex/README
+++ b/Master/texmf-dist/doc/latex/biblatex/README
@@ -1,4 +1,4 @@
-$Id: README,v 1.3a 2011/03/18 12:20:20 lehman stable $
+$Id: README,v 1.4 2011/03/31 21:55:36 lehman stable $
ABOUT
diff --git a/Master/texmf-dist/doc/latex/biblatex/RELEASE b/Master/texmf-dist/doc/latex/biblatex/RELEASE
index 7dd2cdc82e1..f7f572872da 100644
--- a/Master/texmf-dist/doc/latex/biblatex/RELEASE
+++ b/Master/texmf-dist/doc/latex/biblatex/RELEASE
@@ -1,4 +1,158 @@
-$Id: RELEASE,v 1.3a 2011/03/18 12:20:20 lehman stable $
+$Id: RELEASE,v 1.4 2011/03/31 21:55:36 lehman stable $
+
+RELEASE NOTES FOR VERSION 1.4
+
+* Biber update
+
+ Biblatex 1.4 requires Biber 0.9 or higher. It will not work with
+ any previous release.
+
+* Advanced name disambiguation in citations [Biber only]
+
+ Name disambiguation in citations has been greatly improved and
+ extended in this release. We're pretty excited about this feature
+ because it has been in the pipeline for such a long time and
+ because Biblatex/Biber is, to the best of my knowledge, the only
+ bibliographic tool providing fully automated disambiguation of
+ names in citations.
+
+ There are now two options controlling name disambiguation,
+ 'uniquename' and 'uniquelist'. You can use either option
+ stand-alone or combine both. This is best explained by way of
+ example. Consider the following data:
+
+ John Smith/John Doe 2011
+ John Smith/Jane Doe 2011
+ John Smith/Edward Doe 2011
+
+ Let's assume we're using the standard 'authoryear' style and set
+ uniquename=false. In this case, we would get the following
+ citations:
+
+ Smith and Doe 2011a
+ Smith and Doe 2011b
+ Smith and Doe 2011c
+
+ The extra letter appended to the year (that's the automatically
+ generated 'extrayear' field provided by the 'labelyear' option)
+ disambiguates the citations. Many style guides, however, mandate
+ that the extra letter be used to disambiguate works by the same
+ author(s) only, not works by different author with the same last
+ name. In order to disambiguate the author's last name, you're
+ expected to add additional parts of the name, either as initials
+ or in full. This is what the 'uniquename' option does. Here are
+ the same citations with uniquename=init:
+
+ Smith and J. Doe 2011a
+ Smith and J. Doe 2011b
+ Smith and E. Doe 2011
+
+ 'uniquename=init' restricts name disambiguation to initials. Since
+ the first two Does are still ambiguous at that point, we need to
+ fall back to 'extrayear'. With uniquename=full, names are printed
+ in full where required:
+
+ Smith and John Doe 2011
+ Smith and Jane Doe 2011
+ Smith and E. Doe 2011
+
+ In the past, this feature was of limited use since it only worked
+ for entries with a single author/editor. It now works for any name
+ at any point in the list. Since this is only possible with Biber,
+ the feature has been removed entirely from the BibTeX backend.
+
+ When it comes to lists of names, there's another aspect to
+ ambiguity. Let's call it list ambiguity. Consider the following
+ data:
+
+ Doe/Jones/Smith 2011
+ Smith/Johnson/Doe 2011
+ Smith/Doe/Edwards 2011
+ Smith/Doe/Jones 2011
+
+ Most author-year and author-title styles will truncate long
+ author/editor lists in citations. For example, with maxnames=1
+ we'd get:
+
+ Doe et al. 2011
+ Smith et al. 2011a
+ Smith et al. 2011b
+ Smith et al. 2011c
+
+ Since the author lists are ambiguous after truncation, the
+ 'extrayear' marker is added by the style in order to ensure unique
+ citations. Here again, many style guides mandate that the extra
+ letter be used to disambiguate works by the same authors only. In
+ order to disambiguate author lists, you're typically required to
+ add more names, exceeding the maxnames/minnames truncation point.
+ The new 'uniquelist' feature introduced in this release does that
+ automatically. With maxnames=1 and uniquelist=true, we get:
+
+ Doe et al. 2011
+ Smith, Johnson et al. 2011
+ Smith, Doe and Edwards 2011
+ Smith, Doe and Jones 2011
+
+ As seen above, the 'uniquelist' option overrides the 'maxnames'
+ setting on a per-entry basis. Essentially, what happens is that
+ the "et al." parts of the citations get expanded to the point of
+ no ambiguity -- but no further than that.
+
+ 'uniquename' and 'uniquelist' may also be combined. Consider the
+ following data:
+
+ John Doe/Jane Smith/William Jones 2011
+ John Doe/John Smith/William Jones 2011
+ John Doe/Edward Smith/William Jones 2011
+ John Doe/John Edwards/William Jones 2011
+ John Doe/John Edwards/Jack Johnson 2011
+
+ With maxnames=1:
+
+ Doe et al. 2011a
+ Doe et al. 2011b
+ Doe et al. 2011c
+ Doe et al. 2011d
+ Doe et al. 2011e
+
+ With maxnames=1, uniquename=true, uniquelist=true:
+
+ Doe, Jane Smith et al. 2011
+ Doe, John Smith et al. 2011
+ Doe, E. Smith et al. 2011
+ Doe, Edwards and Jones 2011
+ Doe, Edwards and Johnson 2011
+
+ If multiple disambiguation options are active, names are
+ disambiguated first and works last. The order is as follows:
+
+ 1. uniquename
+ 2. uniquelist
+ 3. extrayear, singletitle
+
+ Adding this feature to existing styles is simple. The 'uniquename'
+ information needs to be evaluated in the name formatting directive
+ which controls the formatting of the 'labelname' list. The default
+ definition in biblatex.def is responsive to the 'uniquename'
+ option. If you're using that, just enable the package option and
+ that's it. If you're using a different format, check biblatex.def
+ on how to incorporate the 'uniquename' feature.
+
+ Adding support for 'uniquelist' is also trivial. If the second
+ optional argument of \printnames is omitted (i.e., no explicit
+ range is specified), \printnames{labelname} will print the
+ 'labelname' list up to the truncation point defined with the
+ 'maxnames'/'minnames' package options. If 'uniquelist' is enabled,
+ it will simply override 'maxnames' on a per-entry basis, i.e.,
+ \printnames will print the 'labelname' list up to point of no
+ ambiguity. Unless you're specifying explicit ranges, all you need
+ to do is enable the 'uniquelist' package option.
+
+* Name disambiguation in standard styles [Biber only]
+
+ All standard author-year and author-title styles now enable
+ uniquename/uniquelist disambiguation. Of course this only works
+ when using Biber.
RELEASE NOTES FOR VERSION 1.3
diff --git a/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf b/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf
index e89b789cd4f..709b158effa 100644
--- a/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf
+++ b/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/biblatex/biblatex.tex b/Master/texmf-dist/doc/latex/biblatex/biblatex.tex
index 5c790e3cfb3..aff8301e48a 100644
--- a/Master/texmf-dist/doc/latex/biblatex/biblatex.tex
+++ b/Master/texmf-dist/doc/latex/biblatex/biblatex.tex
@@ -1,4 +1,4 @@
-% $Id: biblatex.tex,v 1.3a 2011/03/18 12:20:20 lehman stable $
+% $Id: biblatex.tex,v 1.4 2011/03/31 21:55:36 lehman stable $
\documentclass{ltxdockit}[2010/11/19]
\usepackage{btxdockit}
\usepackage[latin9]{inputenc}
@@ -12,7 +12,7 @@
\MakeAutoQuote*{<}{>}
\MakeShortVerb{\|}
-\rcsid{$Id: biblatex.tex,v 1.3a 2011/03/18 12:20:20 lehman stable $}
+\rcsid{$Id: biblatex.tex,v 1.4 2011/03/31 21:55:36 lehman stable $}
\newcommand*{\biber}{Biber\xspace}
\newcommand*{\biblatex}{Biblatex\xspace}
@@ -61,7 +61,7 @@
\newenvironment{namedelims}
{\trivlist\item
- \tabularx{\textwidth}{@{}l@{=}lX@{}}}
+ \tabularx{\textwidth}{@{}c@{=}lX@{}}}
{\endtabularx\endtrivlist}
\newenvironment{namesample}
@@ -82,15 +82,15 @@
\makeatother
\newrobustcmd*{\Deprecated}{%
- \textcolor{spot}{Deprecated}}
+ \textcolor{spot}{\margnotefont Deprecated}}
\newrobustcmd*{\DeprecatedMark}{%
\leavevmode\marginpar{\Deprecated}}
\newrobustcmd*{\BiberOnly}{%
- \textcolor{spot}{Biber only}}
+ \textcolor{spot}{\margnotefont Biber only}}
\newrobustcmd*{\BiberOnlyMark}{%
\leavevmode\marginpar{\BiberOnly}}
\newrobustcmd*{\BibTeXOnly}{%
- \textcolor{spot}{BibTeX only}}
+ \textcolor{spot}{\margnotefont BibTeX only}}
\newrobustcmd*{\BibTeXOnlyMark}{%
\leavevmode\marginpar{\BibTeXOnly}}
@@ -273,56 +273,6 @@ The \sty{ucs} package provides support for \utf encoded input. Either use \sty{i
\end{marglist}
-%\section{Getting Started}
-%\label{get}
-%
-%\fixme{incomplete}
-%
-%\subsection{Database Files}
-%\label{get:bib}
-%
-%\fixme{incomplete}
-%
-%\begin{lstlisting}[style=bibtex]{}
-%@<<type>>{<<key>>,
-% <<field>> = {<<value>>},
-% field = {value},
-% field = {value},
-%}
-%\end{lstlisting}
-%
-%\begin{lstlisting}[style=bibtex]{}
-%@Book{companion,
-% author = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander},
-% title = {The LaTeX Companion},
-% publisher = {Addison-Wesley},
-% location = {Reading, Mass.},
-% edition = {1},
-% date = {1994},
-%}
-%\end{lstlisting}
-%
-%\begin{lstlisting}[style=bibtex]{}
-%Last
-%Last, First
-%Last, Suffix, First
-%Prefix Last, First
-%Prefix Last, Suffix, First
-%\end{lstlisting}
-%
-%\begin{lstlisting}[style=bibtex]{}
-%Aristotle
-%Doe, John
-%Doe, Junior, John
-%van Beethoven, Ludwig
-%de La Vallée Poussin, Charles-Jean Étienne Gustave Nicolas
-%\end{lstlisting}
-%
-%\subsection{Loading and Usage}
-%\label{get:bib}
-%
-%\fixme{incomplete}
-
\section{Database Guide}
\label{bib}
@@ -496,7 +446,7 @@ An entry set. This entry type is special, see \secref{use:use:set} for details.
A thesis written for an educational institution to satisfy the requirements for a degree. Use the \bibfield{type} field to specify the type of thesis.
\reqitem{author, title, type, institution, year/date}
-\optitem{subtitle, titleaddon, language, note, location, month, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
+\optitem{subtitle, titleaddon, language, note, location, month, isbn, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{unpublished}
@@ -518,15 +468,15 @@ The entry types listed in this section are provided for backwards compatibility
\begin{typelist}
-\typeitem{conference}\DeprecatedMark A \bibtex legacy alias for \bibtype{inproceedings}.
+\typeitem{conference} A \bibtex legacy alias for \bibtype{inproceedings}.
-\typeitem{electronic}\DeprecatedMark An alias for \bibtype{online}.
+\typeitem{electronic} An alias for \bibtype{online}.
-\typeitem{mastersthesis}\DeprecatedMark Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localized term <Master's thesis>. You may still use the \bibfield{type} field to override that.
+\typeitem{mastersthesis} Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localized term <Master's thesis>. You may still use the \bibfield{type} field to override that.
-\typeitem{phdthesis}\DeprecatedMark Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localized term <PhD thesis>. You may still use the \bibfield{type} field to override that.
+\typeitem{phdthesis} Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localized term <PhD thesis>. You may still use the \bibfield{type} field to override that.
-\typeitem{techreport}\DeprecatedMark Similar to \bibtype{report} except that the \bibfield{type} field is optional and defaults to the localized term <technical report>. You may still use the \bibfield{type} field to override that.
+\typeitem{techreport} Similar to \bibtype{report} except that the \bibfield{type} field is optional and defaults to the localized term <technical report>. You may still use the \bibfield{type} field to override that.
\typeitem{www}
@@ -2445,10 +2395,29 @@ Whether or not to provide the special fields \bibfield{labelyear} and \bibfield{
Whether or not to provide the data required by the \cmd{ifsingletitle} test, see \secref{aut:aux:tst} for details.
\BiberOnlyMark With Biber, this option is also settable on a per-type basis.
-\optitem[false]{uniquename}{\opt{true}, \opt{false}, \opt{init}}
+\optitem[false]{uniquename}{\opt{true}, \opt{false}, \opt{init}, \opt{full},
+\opt{allinit}, \opt{allfull}}[\BiberOnly]
-Whether or not to set the \cnt{uniquename} counter, see \secref{aut:aux:tst} for details. This feature is useful in citation styles which add initials or other parts of the name when citing different authors with the same last name. If the citation style uses initials to disambiguate names but never prints the full name in citations, set the option to \texttt{init} rather than \texttt{true}. This difference is crucial because the state of this option will also affect the \cmd{ifsingletitle} test and the \bibfield{extrayear} field. Do not set the option to \texttt{true} in citation styles which only print initials to disambiguate names.
-\BiberOnlyMark With Biber, this option is also settable on a per-type basis.
+Whether or not to set the \cnt{uniquename} counter, see \secref{aut:aux:tst} for details.
+This feature will disambiguate individual names in the \bibfield{labelname} list.
+It is useful in citation styles which add initials or other parts of the name when citing different authors with the same last name.
+This option is also settable on a per-type basis.
+The possible choices are:
+
+\begin{valuelist}
+\item[true] An alias for \opt{full}.
+\item[false] Disable this feature.
+\item[init] Try to disambiguate names using initials only.
+\item[full] Try to disambiguate names using initials or full names, as required.
+\item[allinit] Similar to \opt{init} but disambiguates all names in the \bibfield{labelname} list, beyond \opt{maxnames}\slash \opt{minnames}\slash \opt{uniquelist}.
+\item[allfull] Similar to \opt{full} but disambiguates all names in the \bibfield{labelname} list, beyond \opt{maxnames}\slash \opt{minnames}\slash \opt{uniquelist}.
+\end{valuelist}
+%
+If the citation style merely uses initials to disambiguate names and will never print the full name in citations, set the option to \texttt{init}\slash \texttt{allinit} rather than \texttt{full}\slash \texttt{allfull}. This difference is crucial because the state of this option will also affect the \cmd{ifsingletitle} test and the \bibfield{extrayear} field. Do not set the option to \texttt{true} in citation styles which only print initials to disambiguate names.
+
+\boolitem[false]{uniquelist}[\BiberOnly]
+
+Whether or not to set the \cnt{uniquelist} counter, see \secref{aut:aux:tst} for details. This feature will disambiguate the \bibfield{labelname} list if it is ambiguous after \opt{maxnames}\slash \opt{minnames} truncation. Essentially, it overrides \cnt{maxnames} on a per-entry basis. This option is also settable on a per-type basis.
\end{optionlist}
@@ -3673,6 +3642,9 @@ This delimiter controls the spacing between name parts. It is inserted between t
\csitem{bibnamedelimd}
This delimiter is inserted between all name parts where \cmd{bibnamedelimc} does not apply. The default definition is an interword space penalized by the value of the \cnt{lownamepenalty} counter (\secref{use:fmt:len}). Please refer to \secref{use:cav:nam} for further details.
+\csitem{bibnamedelimi}\BiberOnlyMark
+This delimiter replaces \cmd{bibnamedelima/b} after initials. Note that this only applies to initials given as such in the \file{bib} file, not to the initials automatically generated by \sty{biblatex} which use their own set of delimiters.
+
\csitem{bibinitperiod}\BiberOnlyMark
The punctuation inserted after initials unless \cmd{bibinithyphendelim} applies. The default definition is a period (\cmd{adddot}). Please refer to \secref{use:cav:nam} for further details.
@@ -3682,6 +3654,38 @@ The spacing inserted between multiple initials unless \cmd{bibinithyphendelim} a
\csitem{bibinithyphendelim}\BiberOnlyMark
The punctuation inserted between the initials of hyphenated name parts, replacing \cmd{bibinitperiod} and \cmd{bibinitdelim}. The default definition is a period followed by an unbreakable hyphen. Please refer to \secref{use:cav:nam} for further details.
+\csitem{bibindexnamedelima}
+
+Replaces \cmd{bibnamedelima} in the index.
+
+\csitem{bibindexnamedelimb}
+
+Replaces \cmd{bibnamedelimb} in the index.
+
+\csitem{bibindexnamedelimc}
+
+Replaces \cmd{bibnamedelimc} in the index.
+
+\csitem{bibindexnamedelimd}
+
+Replaces \cmd{bibnamedelimd} in the index.
+
+\csitem{bibindexnamedelimi}
+
+Replaces \cmd{bibnamedelimi} in the index.
+
+\csitem{bibindexinitperiod}
+
+Replaces \cmd{bibinitperiod} in the index.
+
+\csitem{bibindexinitdelim}
+
+Replaces \cmd{bibinitdelim} in the index.
+
+\csitem{bibindexinithyphendelim}
+
+Replaces \cmd{bibinithyphendelim} in the index.
+
\csitem{bibnamedash}
The dash to be used as a replacement for recurrent authors or editors in the bibliography. The default is an <em> or an <en> dash, depending on the indentation of the list of references.
@@ -4572,6 +4576,7 @@ a & \cmd{bibnamedelima} & Inserted by the backend after the first element of eve
b & \cmd{bibnamedelimb} & Inserted by the backend between all elements of a name part where \cmd{bibnamedelima} does not apply. \\
c & \cmd{bibnamedelimc} & Inserted by a formatting directive between the name prefix and the last name if \kvopt{useprefix}{true}. If \kvopt{useprefix}{true}, \cmd{bibnamedelimd} is used instead. \\
d & \cmd{bibnamedelimd} & Inserted by a formatting directive between name parts where \cmd{bibnamedelimc} does not apply. \\
+i & \cmd{bibnamedelimi} & Replaces \cmd{bibnamedelima/b} after initials \\
\end{namedelims}
%
This is how the delimiters are employed:
@@ -4580,6 +4585,12 @@ This is how the delimiters are employed:
\item John\delim{~}{a}Edward\delim{ }{d}Doe
\end{namesample}
%
+Initials in the \file{bib} file get a special delimiter:
+
+\begin{namesample}
+\item J.\delim{~}{i}Edward\delim{ }{d}Doe
+\end{namesample}
+%
Let's consider a more complex name: \enquote{Charles-Jean Étienne Gustave Nicolas de La Vallée Poussin}. This name is composed of the following parts:
\begin{nameparts}
@@ -4597,7 +4608,7 @@ The delimiters:
La\delim{~}{a}Vallée\delim{~}{a}Poussin
\end{namesample}
%
-Note that \cmd{bibnamedelima/b} are inserted by the backend. The backend processes the name parts and takes care of the delimiters between the elements that make up a name part, processing each part individually. In contrast to that, the delimiters between the parts of the complete name (\cmd{bibnamedelimc/d}) are added by name formatting directives at a later point in the processing chain. The spacing and punctuation of initals is also handled by the backend and may be customized by redefining the following three macros:
+Note that \cmd{bibnamedelima/b/i} are inserted by the backend. The backend processes the name parts and takes care of the delimiters between the elements that make up a name part, processing each part individually. In contrast to that, the delimiters between the parts of the complete name (\cmd{bibnamedelimc/d}) are added by name formatting directives at a later point in the processing chain. The spacing and punctuation of initals is also handled by the backend and may be customized by redefining the following three macros:
\begin{namedelims}
a & \cmd{bibinitperiod} & Inserted by the backend after initials.\\
@@ -6099,9 +6110,9 @@ Expands to \prm{true} when located in a footnote, and to \prm{false} otherwise.
This counter indicates how many times the entry currently being processed is cited in the current reference section. Note that this feature needs to be enabled explicitly with the package option \opt{citecounter}. If the option is set to \texttt{context}, citations in the body text and in footnotes are counted separately. In this case, \cnt{citecounter} will hold the value of the context it is used in.
-\cntitem{uniquename}
+\cntitem{uniquename}\BiberOnlyMark This counter refers to the \bibfield{labelname} list and is set on a per-name basis. Its value is \texttt{0} if the author's or editor's last name is unique, \texttt{1} if adding the other parts of the name (first name, prefix, suffix) as initials will make it unique, and \texttt{2} if the full name is required to disambiguate the name. This information is required by author-year and author-title citation schemes which add additional parts of the name when citing different authors with the same last name. For example, if there is one <John Doe> and one <Edward Doe> in the list of references, this counter will be set to \texttt{1}. If there is one <John Doe> and one <Jane Doe>, the value of the counter will be \texttt{2}. If the option is set to \texttt{init}, the counter will be limited to \texttt{1}. This is useful for citations styles which use initials to disambiguate names but never print the full name in citations. If adding the initials is not sufficient to disambiguate the name, \cnt{uniquename} will also be set to \texttt{0} for that name. This feature needs to be enabled explicitly with the package option \opt{uniquename}. Note that the \cnt{uniquename} counter is set <inside> \cmd{printnames} and that it is only set for the \bibfield{labelname} list. Its value is zero in any other context, i.e., it must be evaluated in the name formatting directive handling the \bibfield{labelname} list.
-This counter refers to the \bibfield{labelname} list. Its value is \texttt{0} if the author's or editor's last name is unique, \texttt{1} if adding the other parts of the name (first name, prefix, suffix) as initials will make it unique, and \texttt{2} if the full name is required to form a unique citation. This information is required by author-year and author-title citation schemes which add additional parts of the name when citing different authors with the same last name. For example, if there is one <John Doe> and one <Edward Doe> in the list of references, this counter will be set to \texttt{1} for all works by these authors. If there is one <John Doe> and one <Jane Doe>, the value of the counter will be \texttt{2}. Note that this feature needs to be enabled explicitly with the package option \opt{uniquename}. If the option is set to \texttt{init}, the counter will be limited to \texttt{1}. This is useful for citations styles which use initials to disambiguate names but never print the full name in citations. Also note that this feature only works with single names. If the \bibfield{labelname} list holds multiple names, the value of the counter is always zero.
+\cntitem{uniquelist}\BiberOnlyMark This counter refers to the \bibfield{labelname} list and is set on a per-entry basis. Its value indicates the number of names required to disambiguate the \bibfield{labelname} list if automatic \cnt{maxnames}\slash \cnt{minnames} truncation would lead to an ambiguous list of names. For example, if there is one work by <Doe\slash Smith\slash Johnson> and another one by <Doe\slash Edwards\slash Williams>, setting \kvopt{maxnames}{1} might lead to <Doe et al.> in citations in both cases (depending on the style). In this case, \cnt{uniquelist} would be set to \texttt{2} for both entries because at least the first two names are required to disambiguate the \bibfield{labelname} lists of these entries. Note that the \cnt{uniquelist} counter is set <inside> \cmd{printnames} and that it is only set for the \bibfield{labelname} list. Its value is zero in any other context. If available, the \cnt{uniquelist} value will be used by \cmd{printnames} when processing the \bibfield{labelname} list, \ie it will automatically override \cnt{maxnames}. This feature needs to be enabled explicitly with the package option \opt{uniquelist}.
\cntitem{parenlevel}
@@ -7317,6 +7328,9 @@ This delimiter controls the spacing between name parts. The default name formats
\csitem{bibnamedelimd}
This delimiter controls the spacing between name parts. The default name formats use it between all name parts where \cmd{bibnamedelimc} does not apply. The default definition is \cmd{addlowpenspace}, \ie a space penalized by the value of the \cnt{lownamepenalty} counter (\secref{use:fmt:len}). Please refer to \secref{use:cav:nam} for further details.
+\csitem{bibnamedelimi}\BiberOnlyMark
+This delimiter replaces \cmd{bibnamedelima/b} after initials. Note that this only applies to initials given as such in the \file{bib} file, not to the initials automatically generated by \sty{biblatex} which use their own set of delimiters.
+
\csitem{bibinitperiod}\BiberOnlyMark
The punctuation inserted automatically by the backend after all initials unless \cmd{bibinithyphendelim} applies. The default definition is a period (\cmd{adddot}). Please refer to \secref{use:cav:nam} for further details.
@@ -7326,6 +7340,38 @@ The spacing inserted automatically by the backend between multiple initials unle
\csitem{bibinithyphendelim}\BiberOnlyMark
The punctuation inserted automatically by the backend between the initials of hyphenated name parts, replacing \cmd{bibinitperiod} and \cmd{bibinitdelim}. The default definition is a period followed by an unbreakable hyphen. Please refer to \secref{use:cav:nam} for further details.
+\csitem{bibindexnamedelima}
+
+Replaces \cmd{bibnamedelima} in the index.
+
+\csitem{bibindexnamedelimb}
+
+Replaces \cmd{bibnamedelimb} in the index.
+
+\csitem{bibindexnamedelimc}
+
+Replaces \cmd{bibnamedelimc} in the index.
+
+\csitem{bibindexnamedelimd}
+
+Replaces \cmd{bibnamedelimd} in the index.
+
+\csitem{bibindexnamedelimi}
+
+Replaces \cmd{bibnamedelimi} in the index.
+
+\csitem{bibindexinitperiod}
+
+Replaces \cmd{bibinitperiod} in the index.
+
+\csitem{bibindexinitdelim}
+
+Replaces \cmd{bibinitdelim} in the index.
+
+\csitem{bibindexinithyphendelim}
+
+Replaces \cmd{bibinithyphendelim} in the index.
+
\csitem{bibnamedash}
The dash to be used as a replacement for recurrent authors or editors in the bibliography. The default is an <em> or an <en> dash, depending on the indentation of the list of references.
@@ -8419,6 +8465,23 @@ This revision history is a list of changes relevant to users of this package. Ch
\begin{changelog}
+\begin{release}{1.4}{2011-??-??}
+\item Added package option \opt{uniquelist}\see{use:opt:pre:int}\BiberOnlyMark
+\item Added special counter \cnt{uniquelist}\see{aut:aux:tst}\BiberOnlyMark
+\item Revised and improved package option \opt{uniquename}\see{use:opt:pre:int}\BiberOnlyMark
+\item Revised and improved special counter \cnt{uniquename}\see{aut:aux:tst}\BiberOnlyMark
+\item Added \cmd{bibnamedelimi}\see{use:fmt:fmt}\BiberOnlyMark
+\item Added \cmd{bibindexnamedelima}\see{use:fmt:fmt}
+\item Added \cmd{bibindexnamedelimb}\see{use:fmt:fmt}
+\item Added \cmd{bibindexnamedelimc}\see{use:fmt:fmt}
+\item Added \cmd{bibindexnamedelimd}\see{use:fmt:fmt}
+\item Added \cmd{bibindexnamedelimi}\see{use:fmt:fmt}
+\item Added \cmd{bibindexinitperiod}\see{use:fmt:fmt}
+\item Added \cmd{bibindexinitdelim}\see{use:fmt:fmt}
+\item Added \cmd{bibindexinithyphendelim}\see{use:fmt:fmt}
+\item Fixed conflict with some \acr{AMS} classes
+\end{release}
+
\begin{release}{1.3a}{2011-03-18}
\item Fixed some bugs
\end{release}
@@ -8566,280 +8629,280 @@ This revision history is a list of changes relevant to users of this package. Ch
\item Updated support for Italian (Andrea Marchitelli)
\end{release}
-\begin{release}{0.9e}{2010-10-09}
-\item Updated and expanded manual\see{bib:cav:enc}
-\item Added option \opt{sortupper}\see{use:opt:pre:gen}
-\item Added option \opt{sortlocale}\see{use:opt:pre:gen}
-\item Added option \opt{backrefsetstyle}\see{use:opt:pre:gen}
-\item Added \cmd{bibpagerefpunct}\see{use:fmt:fmt}
-\item Added \cmd{backtrackertrue} and \cmd{backtrackerfalse}\see{aut:aux:msc}
-\item Disable back reference tracking in \acr{TOC}/\acr{LOT}/\acr{LOF}\see{aut:cav:flt}
-\item Improved back reference tracking for \bibtype{set} entries
-\item Fixed some bugs
-\end{release}
-
-\begin{release}{0.9d}{2010-09-03}
-\item Added workaround for \sty{hyperref} space factor issue
-\item Added workaround for \sty{xkeyval}'s flawed class option inheritance
-\item Added workaround for \sty{fancyvrb}'s flawed brute-force \cmd{VerbatimFootnotes}
-\item Removed option \kvopt{date}{none}\see{use:opt:pre:gen}
-\item Removed option \kvopt{urldate}{none}\see{use:opt:pre:gen}
-\item Removed option \kvopt{origdate}{none}\see{use:opt:pre:gen}
-\item Removed option \kvopt{eventdate}{none}\see{use:opt:pre:gen}
-\item Removed option \kvopt{alldates}{none}\see{use:opt:pre:gen}
-\item Added option \kvopt{date}{iso8601}\see{use:opt:pre:gen}
-\item Added option \kvopt{urldate}{iso8601}\see{use:opt:pre:gen}
-\item Added option \kvopt{origdate}{iso8601}\see{use:opt:pre:gen}
-\item Added option \kvopt{eventdate}{iso8601}\see{use:opt:pre:gen}
-\item Added option \kvopt{alldates}{iso8601}\see{use:opt:pre:gen}
-\end{release}
-
-\begin{release}{0.9c}{2010-08-29}
-\item Added field \bibfield{eprintclass}\see{bib:fld:dat}
-\item Added field alias \bibfield{archiveprefix}\see{bib:fld:als}
-\item Added field alias \bibfield{primaryclass}\see{bib:fld:als}
-\item Updated documentation\see{use:use:epr}
-\item Tweaked package option \kvopt{babel}{other*}\see{use:opt:pre:gen}
-\item Updated support for Brazilian (Mateus Araújo)
-\item Fixed some bugs
-\end{release}
-
-\begin{release}{0.9b}{2010-08-04}
-
-\item New dependency on \sty{logreq} package\see{int:pre:req}
-\item Improved separator masking in literal lists\see{bib:use:and}
-\item Added citation style \texttt{authortitle-ticomp}\see{use:xbx:cbx}
-\item Added option \opt{citepages} to all \texttt{verbose} citation styles\see{use:xbx:cbx}
-\item Added support for prefixes to all \texttt{numeric} citation styles\see{use:xbx:cbx}
-\item Added support for prefixes to all \texttt{numeric} bibliography styles\see{use:xbx:bbx}
-\item Renamed package option \opt{defernums} to \opt{defernumbers}\see{use:opt:pre:gen}
-\item Added option \opt{sortcase}\see{use:opt:pre:gen}
-\item Added option \opt{dateabbrev}\see{use:opt:pre:gen}
-\item Added option \kvopt{date}{none}\see{use:opt:pre:gen}
-\item Added option \kvopt{urldate}{none}\see{use:opt:pre:gen}
-\item Added option \kvopt{origdate}{none}\see{use:opt:pre:gen}
-\item Added option \kvopt{eventdate}{none}\see{use:opt:pre:gen}
-\item Added option \kvopt{alldates}{none}\see{use:opt:pre:gen}
-\item Added option \opt{clearlang}\see{use:opt:pre:gen}
-\item Added option \opt{prefixnumbers} to \cmd{printbibliography}\see{use:bib:bib}
-\item Added option \opt{resetnumbers} to \cmd{printbibliography}\see{use:bib:bib}
-\item Added option \opt{omitnumbers} to \cmd{printbibliography}\see{use:bib:bib}
-\item Added special field \bibfield{prefixnumber}\see{aut:bbx:fld}
-\item Added \cmd{DeclareRedundantLanguages}\see{aut:lng:cmd}
-\item Added support for handles (\acr{HDL}s)\see{use:use:epr}
-\item Extended \cmd{defbibfilter}\see{use:bib:flt}
-\item Added \cmd{nametitledelim}\see{use:fmt:fmt}
-\item Improved \cmd{newbibmacro}\see{aut:aux:msc}
-\item Improved \cmd{renewbibmacro}\see{aut:aux:msc}
-\item Added \cmd{biblstring}\see{aut:str}
-\item Added \cmd{bibsstring}\see{aut:str}
-\item Added \cmd{bibcplstring}\see{aut:str}
-\item Added \cmd{bibcpsstring}\see{aut:str}
-\item Added \cmd{bibuclstring}\see{aut:str}
-\item Added \cmd{bibucsstring}\see{aut:str}
-\item Added \cmd{biblclstring}\see{aut:str}
-\item Added \cmd{biblcsstring}\see{aut:str}
-\item Added \cmd{bibxlstring}\see{aut:str}
-\item Added \cmd{bibxsstring}\see{aut:str}
-\item Added \cmd{mkbibbold}\see{aut:fmt:ich}
-\item Modified and extended log messages\see{bib:cav:ide}
-\item Fixed some bugs
-
-\end{release}
-
-\begin{release}{0.9a}{2010-03-19}
-
-\item Modified citation style \texttt{numeric}\see{use:xbx:cbx}
-\item Modified citation style \texttt{numeric-comp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{numeric-verb}\see{use:xbx:cbx}
-\item Modified citation style \texttt{alphabetic}\see{use:xbx:cbx}
-\item Modified citation style \texttt{alphabetic-verb}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authoryear}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authoryear-comp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authoryear-ibid}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authoryear-icomp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle-comp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle-ibid}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle-icomp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle-terse}\see{use:xbx:cbx}
-\item Modified citation style \texttt{authortitle-tcomp}\see{use:xbx:cbx}
-\item Modified citation style \texttt{draft}\see{use:xbx:cbx}
-\item Modified citation style \texttt{debug}\see{use:xbx:cbx}
-\item Added option \opt{bibwarn}\see{use:opt:pre:gen}
-\item Added \cmd{printbibheading}\see{use:bib:bib}
-\item Added option \opt{env} to \cmd{printbibliography}\see{use:bib:bib}
-\item Added option \opt{env} to \cmd{printshorthands}\see{use:bib:los}
-\item Added \cmd{defbibenvironment}\see{use:bib:hdg}
-\item Removed \env{thebibliography}\see{aut:bbx:bbx}
-\item Removed \env{theshorthands}\see{aut:bbx:bbx}
-\item Removed \cmd{thebibitem}\see{aut:bbx:bbx}
-\item Removed \cmd{thelositem}\see{aut:bbx:bbx}
-\item Updated documentation\see{aut:bbx:bbx}
-\item Updated documentation\see{aut:bbx:env}
-\item Added \cmd{intitlepunct}\see{use:fmt:fmt}
-\item Added option \opt{parentracker}\see{use:opt:pre:int}
-\item Added option \opt{maxparens}\see{use:opt:pre:int}
-\item Added counter \cnt{parenlevel}\see{aut:aux:tst}
-\item Added \cmd{parentext}\see{use:cit:txt}
-\item Added \cmd{brackettext}\see{use:cit:txt}
-\item Improved \cmd{mkbibparens}\see{aut:fmt:ich}
-\item Improved \cmd{mkbibbrackets}\see{aut:fmt:ich}
-\item Added \cmd{bibopenparen} and \cmd{bibcloseparen}\see{aut:fmt:ich}
-\item Added \cmd{bibopenbracket} and \cmd{bibclosebracket}\see{aut:fmt:ich}
-\item Added special field \bibfield{childentrykey}\see{aut:bbx:fld}
-\item Added special field \bibfield{childentrytype}\see{aut:bbx:fld}
-\item Added \cmd{ifnatbibmode}\see{aut:aux:tst}
-\item Added missing documentation of \cmd{ifbibxstring}\see{aut:aux:tst}
-\item Added \cmd{providebibmacro}\see{aut:aux:msc}
-\item Added localization key \texttt{backrefpage}\see{aut:lng:key}
-\item Added localization key \texttt{backrefpages}\see{aut:lng:key}
-\item Slightly expanded documentation\see{bib:use:dat}
-\item Slightly expanded documentation\see{aut:bbx:fld:dat}
-\item Added support for Finnish (translations by Hannu Väisänen)
-\item Updated support for Greek (translations by Prokopis)
-
-\end{release}
-
-\begin{release}{0.9}{2010-02-14}
-
-\item Added entry type \bibtype{bookinbook}\see{bib:typ:blx}
-\item Support \bibfield{eventtitle}/\bibfield{eventdate}/\bibfield{venue} in \bibtype{proceedings}\see{bib:typ:blx}
-\item Support \bibfield{eventtitle}/\bibfield{eventdate}/\bibfield{venue} in \bibtype{inproceedings}\see{bib:typ:blx}
-\item Added support for multiple editorial roles\see{bib:use:edr}
-\item Added field \bibfield{editora}\see{bib:fld:dat}
-\item Added field \bibfield{editorb}\see{bib:fld:dat}
-\item Added field \bibfield{editorc}\see{bib:fld:dat}
-\item Added field \bibfield{editoratype}\see{bib:fld:dat}
-\item Added field \bibfield{editorbtype}\see{bib:fld:dat}
-\item Added field \bibfield{editorctype}\see{bib:fld:dat}
-\item Removed field \bibfield{redactor}\see{bib:fld:dat}
-\item Added field \bibfield{pubstate}\see{bib:fld:dat}
-\item Support \bibfield{pubstate} in all entry types\see{bib:typ:blx}
-\item Support full dates in all entry types\see{bib:typ:blx}
-\item Modified and extended date handling\see{bib:use:dat}
-\item Updated documentation\see{bib:use:iss}
-\item Removed field \bibfield{day}\see{bib:fld:dat}
-\item Modified data type of field \bibfield{year}\see{bib:fld:dat}
-\item Extended field \bibfield{date}\see{bib:fld:dat}
-\item Removed field \bibfield{origyear}\see{bib:fld:dat}
-\item Added field \bibfield{origdate}\see{bib:fld:dat}
-\item Added field \bibfield{eventdate}\see{bib:fld:dat}
-\item Removed fields \bibfield{urlday}/\bibfield{urlmonth}/\bibfield{urlyear}\see{bib:fld:dat}
-\item Updated documentation\see{bib:use:dat}
-\item Extended option \opt{date}\see{use:opt:pre:gen}
-\item Extended option \opt{urldate}\see{use:opt:pre:gen}
-\item Added option \opt{origdate}\see{use:opt:pre:gen}
-\item Added option \opt{eventdate}\see{use:opt:pre:gen}
-\item Added option \opt{alldates}\see{use:opt:pre:gen}
-\item Added option \opt{datezeros}\see{use:opt:pre:gen}
-\item Added option \opt{language}\see{use:opt:pre:gen}
-\item Added option \cnt{notetype}\see{use:opt:pre:gen}
-\item Added option \cnt{backrefstyle}\see{use:opt:pre:gen}
-\item Modified option \opt{indexing}\see{use:opt:pre:gen}
-\item Made option \kvopt{hyperref}{auto} the default\see{use:opt:pre:gen}
-\item Added option \kvopt{backend}{biber}\see{use:opt:pre:gen}
-\item Updated documentation\see{bib:cav:enc}
-\item Added option \opt{isbn}\see{use:opt:pre:bbx}
-\item Added option \opt{url}\see{use:opt:pre:bbx}
-\item Added option \opt{doi}\see{use:opt:pre:bbx}
-\item Added option \opt{eprint}\see{use:opt:pre:bbx}
-\item Improved citation style \texttt{authortitle-comp}\see{use:xbx:cbx}
-\item Improved citation style \texttt{authortitle-icomp}\see{use:xbx:cbx}
-\item Improved citation style \texttt{authortitle-tcomp}\see{use:xbx:cbx}
-\item Improved citation style \texttt{authoryear-comp}\see{use:xbx:cbx}
-\item Added citation style \texttt{authoryear-icomp}\see{use:xbx:cbx}
-\item Added citation style \texttt{verbose-trad3}\see{use:xbx:cbx}
-\item Improved bibliography style \texttt{authortitle}\see{use:xbx:bbx}
-\item Improved bibliography style \texttt{authoryear}\see{use:xbx:bbx}
-\item Improved bibliography style \texttt{verbose}\see{use:xbx:bbx}
-\item Added option \opt{title} to \cmd{printbibliography}\see{use:bib:bib}
-\item Added option \opt{title} to \cmd{printshorthands}\see{use:bib:los}
-\item Extended \cmd{defbibheading}\see{use:bib:hdg}
-\item Added options \opt{subtype}/\opt{notsubtype} to \cmd{printbibliography}\see{use:bib:los}
-\item Added options \opt{subtype}/\opt{notsubtype} to \cmd{printshorthands}\see{use:bib:los}
-\item Added test \opt{subtype} to \cmd{defbibfilter}\see{use:bib:flt}
-\item Added option \opt{segment} to \cmd{printshorthands}\see{use:bib:los}
-\item Added options \opt{type}/\opt{nottype} to \cmd{printshorthands}\see{use:bib:los}
-\item Added options \opt{keyword}/\opt{notkeyword} to \cmd{printshorthands}\see{use:bib:los}
-\item Added options \opt{category}/\opt{notcategory} to \cmd{printshorthands}\see{use:bib:los}
-\item Added option \opt{filter} to \cmd{printshorthands}\see{use:bib:los}
-\item Added \cmd{footcitetext}\see{use:cit:std}
-\item Added \cmd{footcitetexts}\see{use:cit:mlt}
-\item Added \cmd{ftvolcite}\see{use:cit:spc}
-\item Added \cmd{textcites} and \cmd{Textcites}\see{use:cit:mlt}
-\item Added \cmd{nohyphenation}\see{use:fmt:aux}
-\item Added \cmd{textnohyphenation}\see{use:fmt:aux}
-\item Added \cmd{mkpagefirst}\see{aut:aux:msc}
-\item Added \cmd{pagenote} support to \cmd{mkbibendnote}\see{aut:fmt:ich}
-\item Added \cmd{mkbibfootnotetext}\see{aut:fmt:ich}
-\item Added \cmd{mkbibendnotetext}\see{aut:fmt:ich}
-\item Added \cmd{bibfootnotewrapper}\see{aut:fmt:ich}
-\item Added \cmd{bibendnotewrapper}\see{aut:fmt:ich}
-\item Added \cmd{mkdatezeros}\see{aut:fmt:ich}
-\item Added \cmd{stripzeros}\see{aut:fmt:ich}
-\item Added support for \acr{jstor} links\see{use:use:epr}
-\item Added support for PubMed links\see{use:use:epr}
-\item Added support for Google Books links\see{use:use:epr}
-\item Improved \cmd{DeclareBibliographyDriver}\see{aut:bbx:bbx}
-\item Improved \cmd{DeclareBibliographyAlias}\see{aut:bbx:bbx}
-\item Added special fields \bibfield{day}/\bibfield{month}/\bibfield{year}\see{aut:bbx:fld}
-\item Added special fields \bibfield{endday}/\bibfield{endmonth}/\bibfield{endyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{origday}/\bibfield{origmonth}/\bibfield{origyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{origendday}/\bibfield{origendmonth}/\bibfield{origendyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{eventday}/\bibfield{eventmonth}/\bibfield{eventyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{eventendday}/\bibfield{eventendmonth}/\bibfield{eventendyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{urlday}/\bibfield{urlmonth}/\bibfield{urlyear}\see{aut:bbx:fld}
-\item Added special fields \bibfield{urlendday}/\bibfield{urlendmonth}/\bibfield{urlendyear}\see{aut:bbx:fld}
-\item Renamed special field \bibfield{labelyear} to \bibfield{extrayear}\see{aut:bbx:fld}
-\item Added new special field \bibfield{labelyear}\see{aut:bbx:fld}
-\item Renamed \cnt{maxlabelyear} to \cnt{maxextrayear}\see{aut:fmt:ilc}
-\item Renamed \cmd{bibdate} to \cmd{printdate}, modified \cmd{printdate}\see{aut:bib:dat}
-\item Added \cmd{printdateextra}\see{aut:bib:dat}
-\item Renamed \cmd{biburldate} to \cmd{printurldate}, modified \cmd{printurldate}\see{aut:bib:dat}
-\item Added \cmd{printorigdate}\see{aut:bib:dat}
-\item Added \cmd{printeventdate}\see{aut:bib:dat}
-\item Added \cmd{bibdatedash}\see{use:fmt:lng}
-\item Added \cmd{mkbibdatelong} and \cmd{mkbibdateshort}\see{use:fmt:lng}
-\item Removed \cmd{bibdatelong} and \cmd{bibdateshort}\see{use:fmt:lng}
-\item Removed \cmd{biburldatelong} and \cmd{biburldateshort}\see{use:fmt:lng}
-\item Added \cmd{ifciteindex}\see{aut:aux:tst}
-\item Added \cmd{ifbibindex}\see{aut:aux:tst}
-\item Added \cmd{iffieldint}\see{aut:aux:tst}
-\item Added \cmd{iffieldnum}\see{aut:aux:tst}
-\item Added \cmd{iffieldnums}\see{aut:aux:tst}
-\item Added \cmd{ifpages}\see{aut:aux:tst}
-\item Added \cmd{iffieldpages}\see{aut:aux:tst}
-\item Added \cmd{DeclarePageCommands} and \cmd{DeclarePageCommands*}\see{aut:aux:msc}
-\item Improved \cmd{NewBibliographyString}\see{aut:lng:cmd}
-\item Removed localization key \texttt{editor}\see{aut:lng:key}
-\item Removed localization key \texttt{editors}\see{aut:lng:key}
-\item Renamed localization key \texttt{typeeditor} to \texttt{editor}\see{aut:lng:key}
-\item Renamed localization key \texttt{typeeditors} to \texttt{editors}\see{aut:lng:key}
-\item Renamed localization key \texttt{typecompiler} to \texttt{compiler}\see{aut:lng:key}
-\item Renamed localization key \texttt{typecompilers} to \texttt{compilers}\see{aut:lng:key}
-\item Added localization key \texttt{founder}\see{aut:lng:key}
-\item Added localization key \texttt{founders}\see{aut:lng:key}
-\item Added localization key \texttt{continuator}\see{aut:lng:key}
-\item Added localization key \texttt{continuators}\see{aut:lng:key}
-\item Added localization key \texttt{collaborator}\see{aut:lng:key}
-\item Added localization key \texttt{collaborators}\see{aut:lng:key}
-\item Removed localization key \texttt{byauthor}\see{aut:lng:key}
-\item Renamed localization key \texttt{bytypeauthor} to \texttt{byauthor}\see{aut:lng:key}
-\item Removed localization key \texttt{byeditor}\see{aut:lng:key}
-\item Renamed localization key \texttt{bytypeeditor} to \texttt{byeditor}\see{aut:lng:key}
-\item Renamed localization key \texttt{bytypecompiler} to \texttt{bycompiler}\see{aut:lng:key}
-\item Added localization key \texttt{byfounder}\see{aut:lng:key}
-\item Added localization key \texttt{bycontinuator}\see{aut:lng:key}
-\item Added localization key \texttt{bycollaborator}\see{aut:lng:key}
-\item Added localization key \texttt{inpress}\see{aut:lng:key}
-\item Added localization key \texttt{submitted}\see{aut:lng:key}
-\item Added support for Dutch (translations by Alexander van Loon)
-\item Added support for Greek (translations by Apostolos Syropoulos)
-\item Added notes on Greek\see{use:loc:grk}
-
-\end{release}
-
+%\begin{release}{0.9e}{2010-10-09}
+%\item Updated and expanded manual\see{bib:cav:enc}
+%\item Added option \opt{sortupper}\see{use:opt:pre:gen}
+%\item Added option \opt{sortlocale}\see{use:opt:pre:gen}
+%\item Added option \opt{backrefsetstyle}\see{use:opt:pre:gen}
+%\item Added \cmd{bibpagerefpunct}\see{use:fmt:fmt}
+%\item Added \cmd{backtrackertrue} and \cmd{backtrackerfalse}\see{aut:aux:msc}
+%\item Disable back reference tracking in \acr{TOC}/\acr{LOT}/\acr{LOF}\see{aut:cav:flt}
+%\item Improved back reference tracking for \bibtype{set} entries
+%\item Fixed some bugs
+%\end{release}
+%
+%\begin{release}{0.9d}{2010-09-03}
+%\item Added workaround for \sty{hyperref} space factor issue
+%\item Added workaround for \sty{xkeyval}'s flawed class option inheritance
+%\item Added workaround for \sty{fancyvrb}'s flawed brute-force \cmd{VerbatimFootnotes}
+%\item Removed option \kvopt{date}{none}\see{use:opt:pre:gen}
+%\item Removed option \kvopt{urldate}{none}\see{use:opt:pre:gen}
+%\item Removed option \kvopt{origdate}{none}\see{use:opt:pre:gen}
+%\item Removed option \kvopt{eventdate}{none}\see{use:opt:pre:gen}
+%\item Removed option \kvopt{alldates}{none}\see{use:opt:pre:gen}
+%\item Added option \kvopt{date}{iso8601}\see{use:opt:pre:gen}
+%\item Added option \kvopt{urldate}{iso8601}\see{use:opt:pre:gen}
+%\item Added option \kvopt{origdate}{iso8601}\see{use:opt:pre:gen}
+%\item Added option \kvopt{eventdate}{iso8601}\see{use:opt:pre:gen}
+%\item Added option \kvopt{alldates}{iso8601}\see{use:opt:pre:gen}
+%\end{release}
+%
+%\begin{release}{0.9c}{2010-08-29}
+%\item Added field \bibfield{eprintclass}\see{bib:fld:dat}
+%\item Added field alias \bibfield{archiveprefix}\see{bib:fld:als}
+%\item Added field alias \bibfield{primaryclass}\see{bib:fld:als}
+%\item Updated documentation\see{use:use:epr}
+%\item Tweaked package option \kvopt{babel}{other*}\see{use:opt:pre:gen}
+%\item Updated support for Brazilian (Mateus Araújo)
+%\item Fixed some bugs
+%\end{release}
+%
+%\begin{release}{0.9b}{2010-08-04}
+%
+%\item New dependency on \sty{logreq} package\see{int:pre:req}
+%\item Improved separator masking in literal lists\see{bib:use:and}
+%\item Added citation style \texttt{authortitle-ticomp}\see{use:xbx:cbx}
+%\item Added option \opt{citepages} to all \texttt{verbose} citation styles\see{use:xbx:cbx}
+%\item Added support for prefixes to all \texttt{numeric} citation styles\see{use:xbx:cbx}
+%\item Added support for prefixes to all \texttt{numeric} bibliography styles\see{use:xbx:bbx}
+%\item Renamed package option \opt{defernums} to \opt{defernumbers}\see{use:opt:pre:gen}
+%\item Added option \opt{sortcase}\see{use:opt:pre:gen}
+%\item Added option \opt{dateabbrev}\see{use:opt:pre:gen}
+%\item Added option \kvopt{date}{none}\see{use:opt:pre:gen}
+%\item Added option \kvopt{urldate}{none}\see{use:opt:pre:gen}
+%\item Added option \kvopt{origdate}{none}\see{use:opt:pre:gen}
+%\item Added option \kvopt{eventdate}{none}\see{use:opt:pre:gen}
+%\item Added option \kvopt{alldates}{none}\see{use:opt:pre:gen}
+%\item Added option \opt{clearlang}\see{use:opt:pre:gen}
+%\item Added option \opt{prefixnumbers} to \cmd{printbibliography}\see{use:bib:bib}
+%\item Added option \opt{resetnumbers} to \cmd{printbibliography}\see{use:bib:bib}
+%\item Added option \opt{omitnumbers} to \cmd{printbibliography}\see{use:bib:bib}
+%\item Added special field \bibfield{prefixnumber}\see{aut:bbx:fld}
+%\item Added \cmd{DeclareRedundantLanguages}\see{aut:lng:cmd}
+%\item Added support for handles (\acr{HDL}s)\see{use:use:epr}
+%\item Extended \cmd{defbibfilter}\see{use:bib:flt}
+%\item Added \cmd{nametitledelim}\see{use:fmt:fmt}
+%\item Improved \cmd{newbibmacro}\see{aut:aux:msc}
+%\item Improved \cmd{renewbibmacro}\see{aut:aux:msc}
+%\item Added \cmd{biblstring}\see{aut:str}
+%\item Added \cmd{bibsstring}\see{aut:str}
+%\item Added \cmd{bibcplstring}\see{aut:str}
+%\item Added \cmd{bibcpsstring}\see{aut:str}
+%\item Added \cmd{bibuclstring}\see{aut:str}
+%\item Added \cmd{bibucsstring}\see{aut:str}
+%\item Added \cmd{biblclstring}\see{aut:str}
+%\item Added \cmd{biblcsstring}\see{aut:str}
+%\item Added \cmd{bibxlstring}\see{aut:str}
+%\item Added \cmd{bibxsstring}\see{aut:str}
+%\item Added \cmd{mkbibbold}\see{aut:fmt:ich}
+%\item Modified and extended log messages\see{bib:cav:ide}
+%\item Fixed some bugs
+%
+%\end{release}
+%
+%\begin{release}{0.9a}{2010-03-19}
+%
+%\item Modified citation style \texttt{numeric}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{numeric-comp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{numeric-verb}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{alphabetic}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{alphabetic-verb}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authoryear}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authoryear-comp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authoryear-ibid}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authoryear-icomp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle-comp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle-ibid}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle-icomp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle-terse}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{authortitle-tcomp}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{draft}\see{use:xbx:cbx}
+%\item Modified citation style \texttt{debug}\see{use:xbx:cbx}
+%\item Added option \opt{bibwarn}\see{use:opt:pre:gen}
+%\item Added \cmd{printbibheading}\see{use:bib:bib}
+%\item Added option \opt{env} to \cmd{printbibliography}\see{use:bib:bib}
+%\item Added option \opt{env} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added \cmd{defbibenvironment}\see{use:bib:hdg}
+%\item Removed \env{thebibliography}\see{aut:bbx:bbx}
+%\item Removed \env{theshorthands}\see{aut:bbx:bbx}
+%\item Removed \cmd{thebibitem}\see{aut:bbx:bbx}
+%\item Removed \cmd{thelositem}\see{aut:bbx:bbx}
+%\item Updated documentation\see{aut:bbx:bbx}
+%\item Updated documentation\see{aut:bbx:env}
+%\item Added \cmd{intitlepunct}\see{use:fmt:fmt}
+%\item Added option \opt{parentracker}\see{use:opt:pre:int}
+%\item Added option \opt{maxparens}\see{use:opt:pre:int}
+%\item Added counter \cnt{parenlevel}\see{aut:aux:tst}
+%\item Added \cmd{parentext}\see{use:cit:txt}
+%\item Added \cmd{brackettext}\see{use:cit:txt}
+%\item Improved \cmd{mkbibparens}\see{aut:fmt:ich}
+%\item Improved \cmd{mkbibbrackets}\see{aut:fmt:ich}
+%\item Added \cmd{bibopenparen} and \cmd{bibcloseparen}\see{aut:fmt:ich}
+%\item Added \cmd{bibopenbracket} and \cmd{bibclosebracket}\see{aut:fmt:ich}
+%\item Added special field \bibfield{childentrykey}\see{aut:bbx:fld}
+%\item Added special field \bibfield{childentrytype}\see{aut:bbx:fld}
+%\item Added \cmd{ifnatbibmode}\see{aut:aux:tst}
+%\item Added missing documentation of \cmd{ifbibxstring}\see{aut:aux:tst}
+%\item Added \cmd{providebibmacro}\see{aut:aux:msc}
+%\item Added localization key \texttt{backrefpage}\see{aut:lng:key}
+%\item Added localization key \texttt{backrefpages}\see{aut:lng:key}
+%\item Slightly expanded documentation\see{bib:use:dat}
+%\item Slightly expanded documentation\see{aut:bbx:fld:dat}
+%\item Added support for Finnish (translations by Hannu Väisänen)
+%\item Updated support for Greek (translations by Prokopis)
+%
+%\end{release}
+%
+%\begin{release}{0.9}{2010-02-14}
+%
+%\item Added entry type \bibtype{bookinbook}\see{bib:typ:blx}
+%\item Support \bibfield{eventtitle}/\bibfield{eventdate}/\bibfield{venue} in \bibtype{proceedings}\see{bib:typ:blx}
+%\item Support \bibfield{eventtitle}/\bibfield{eventdate}/\bibfield{venue} in \bibtype{inproceedings}\see{bib:typ:blx}
+%\item Added support for multiple editorial roles\see{bib:use:edr}
+%\item Added field \bibfield{editora}\see{bib:fld:dat}
+%\item Added field \bibfield{editorb}\see{bib:fld:dat}
+%\item Added field \bibfield{editorc}\see{bib:fld:dat}
+%\item Added field \bibfield{editoratype}\see{bib:fld:dat}
+%\item Added field \bibfield{editorbtype}\see{bib:fld:dat}
+%\item Added field \bibfield{editorctype}\see{bib:fld:dat}
+%\item Removed field \bibfield{redactor}\see{bib:fld:dat}
+%\item Added field \bibfield{pubstate}\see{bib:fld:dat}
+%\item Support \bibfield{pubstate} in all entry types\see{bib:typ:blx}
+%\item Support full dates in all entry types\see{bib:typ:blx}
+%\item Modified and extended date handling\see{bib:use:dat}
+%\item Updated documentation\see{bib:use:iss}
+%\item Removed field \bibfield{day}\see{bib:fld:dat}
+%\item Modified data type of field \bibfield{year}\see{bib:fld:dat}
+%\item Extended field \bibfield{date}\see{bib:fld:dat}
+%\item Removed field \bibfield{origyear}\see{bib:fld:dat}
+%\item Added field \bibfield{origdate}\see{bib:fld:dat}
+%\item Added field \bibfield{eventdate}\see{bib:fld:dat}
+%\item Removed fields \bibfield{urlday}/\bibfield{urlmonth}/\bibfield{urlyear}\see{bib:fld:dat}
+%\item Updated documentation\see{bib:use:dat}
+%\item Extended option \opt{date}\see{use:opt:pre:gen}
+%\item Extended option \opt{urldate}\see{use:opt:pre:gen}
+%\item Added option \opt{origdate}\see{use:opt:pre:gen}
+%\item Added option \opt{eventdate}\see{use:opt:pre:gen}
+%\item Added option \opt{alldates}\see{use:opt:pre:gen}
+%\item Added option \opt{datezeros}\see{use:opt:pre:gen}
+%\item Added option \opt{language}\see{use:opt:pre:gen}
+%\item Added option \cnt{notetype}\see{use:opt:pre:gen}
+%\item Added option \cnt{backrefstyle}\see{use:opt:pre:gen}
+%\item Modified option \opt{indexing}\see{use:opt:pre:gen}
+%\item Made option \kvopt{hyperref}{auto} the default\see{use:opt:pre:gen}
+%\item Added option \kvopt{backend}{biber}\see{use:opt:pre:gen}
+%\item Updated documentation\see{bib:cav:enc}
+%\item Added option \opt{isbn}\see{use:opt:pre:bbx}
+%\item Added option \opt{url}\see{use:opt:pre:bbx}
+%\item Added option \opt{doi}\see{use:opt:pre:bbx}
+%\item Added option \opt{eprint}\see{use:opt:pre:bbx}
+%\item Improved citation style \texttt{authortitle-comp}\see{use:xbx:cbx}
+%\item Improved citation style \texttt{authortitle-icomp}\see{use:xbx:cbx}
+%\item Improved citation style \texttt{authortitle-tcomp}\see{use:xbx:cbx}
+%\item Improved citation style \texttt{authoryear-comp}\see{use:xbx:cbx}
+%\item Added citation style \texttt{authoryear-icomp}\see{use:xbx:cbx}
+%\item Added citation style \texttt{verbose-trad3}\see{use:xbx:cbx}
+%\item Improved bibliography style \texttt{authortitle}\see{use:xbx:bbx}
+%\item Improved bibliography style \texttt{authoryear}\see{use:xbx:bbx}
+%\item Improved bibliography style \texttt{verbose}\see{use:xbx:bbx}
+%\item Added option \opt{title} to \cmd{printbibliography}\see{use:bib:bib}
+%\item Added option \opt{title} to \cmd{printshorthands}\see{use:bib:los}
+%\item Extended \cmd{defbibheading}\see{use:bib:hdg}
+%\item Added options \opt{subtype}/\opt{notsubtype} to \cmd{printbibliography}\see{use:bib:los}
+%\item Added options \opt{subtype}/\opt{notsubtype} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added test \opt{subtype} to \cmd{defbibfilter}\see{use:bib:flt}
+%\item Added option \opt{segment} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added options \opt{type}/\opt{nottype} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added options \opt{keyword}/\opt{notkeyword} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added options \opt{category}/\opt{notcategory} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added option \opt{filter} to \cmd{printshorthands}\see{use:bib:los}
+%\item Added \cmd{footcitetext}\see{use:cit:std}
+%\item Added \cmd{footcitetexts}\see{use:cit:mlt}
+%\item Added \cmd{ftvolcite}\see{use:cit:spc}
+%\item Added \cmd{textcites} and \cmd{Textcites}\see{use:cit:mlt}
+%\item Added \cmd{nohyphenation}\see{use:fmt:aux}
+%\item Added \cmd{textnohyphenation}\see{use:fmt:aux}
+%\item Added \cmd{mkpagefirst}\see{aut:aux:msc}
+%\item Added \cmd{pagenote} support to \cmd{mkbibendnote}\see{aut:fmt:ich}
+%\item Added \cmd{mkbibfootnotetext}\see{aut:fmt:ich}
+%\item Added \cmd{mkbibendnotetext}\see{aut:fmt:ich}
+%\item Added \cmd{bibfootnotewrapper}\see{aut:fmt:ich}
+%\item Added \cmd{bibendnotewrapper}\see{aut:fmt:ich}
+%\item Added \cmd{mkdatezeros}\see{aut:fmt:ich}
+%\item Added \cmd{stripzeros}\see{aut:fmt:ich}
+%\item Added support for \acr{jstor} links\see{use:use:epr}
+%\item Added support for PubMed links\see{use:use:epr}
+%\item Added support for Google Books links\see{use:use:epr}
+%\item Improved \cmd{DeclareBibliographyDriver}\see{aut:bbx:bbx}
+%\item Improved \cmd{DeclareBibliographyAlias}\see{aut:bbx:bbx}
+%\item Added special fields \bibfield{day}/\bibfield{month}/\bibfield{year}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{endday}/\bibfield{endmonth}/\bibfield{endyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{origday}/\bibfield{origmonth}/\bibfield{origyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{origendday}/\bibfield{origendmonth}/\bibfield{origendyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{eventday}/\bibfield{eventmonth}/\bibfield{eventyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{eventendday}/\bibfield{eventendmonth}/\bibfield{eventendyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{urlday}/\bibfield{urlmonth}/\bibfield{urlyear}\see{aut:bbx:fld}
+%\item Added special fields \bibfield{urlendday}/\bibfield{urlendmonth}/\bibfield{urlendyear}\see{aut:bbx:fld}
+%\item Renamed special field \bibfield{labelyear} to \bibfield{extrayear}\see{aut:bbx:fld}
+%\item Added new special field \bibfield{labelyear}\see{aut:bbx:fld}
+%\item Renamed \cnt{maxlabelyear} to \cnt{maxextrayear}\see{aut:fmt:ilc}
+%\item Renamed \cmd{bibdate} to \cmd{printdate}, modified \cmd{printdate}\see{aut:bib:dat}
+%\item Added \cmd{printdateextra}\see{aut:bib:dat}
+%\item Renamed \cmd{biburldate} to \cmd{printurldate}, modified \cmd{printurldate}\see{aut:bib:dat}
+%\item Added \cmd{printorigdate}\see{aut:bib:dat}
+%\item Added \cmd{printeventdate}\see{aut:bib:dat}
+%\item Added \cmd{bibdatedash}\see{use:fmt:lng}
+%\item Added \cmd{mkbibdatelong} and \cmd{mkbibdateshort}\see{use:fmt:lng}
+%\item Removed \cmd{bibdatelong} and \cmd{bibdateshort}\see{use:fmt:lng}
+%\item Removed \cmd{biburldatelong} and \cmd{biburldateshort}\see{use:fmt:lng}
+%\item Added \cmd{ifciteindex}\see{aut:aux:tst}
+%\item Added \cmd{ifbibindex}\see{aut:aux:tst}
+%\item Added \cmd{iffieldint}\see{aut:aux:tst}
+%\item Added \cmd{iffieldnum}\see{aut:aux:tst}
+%\item Added \cmd{iffieldnums}\see{aut:aux:tst}
+%\item Added \cmd{ifpages}\see{aut:aux:tst}
+%\item Added \cmd{iffieldpages}\see{aut:aux:tst}
+%\item Added \cmd{DeclarePageCommands} and \cmd{DeclarePageCommands*}\see{aut:aux:msc}
+%\item Improved \cmd{NewBibliographyString}\see{aut:lng:cmd}
+%\item Removed localization key \texttt{editor}\see{aut:lng:key}
+%\item Removed localization key \texttt{editors}\see{aut:lng:key}
+%\item Renamed localization key \texttt{typeeditor} to \texttt{editor}\see{aut:lng:key}
+%\item Renamed localization key \texttt{typeeditors} to \texttt{editors}\see{aut:lng:key}
+%\item Renamed localization key \texttt{typecompiler} to \texttt{compiler}\see{aut:lng:key}
+%\item Renamed localization key \texttt{typecompilers} to \texttt{compilers}\see{aut:lng:key}
+%\item Added localization key \texttt{founder}\see{aut:lng:key}
+%\item Added localization key \texttt{founders}\see{aut:lng:key}
+%\item Added localization key \texttt{continuator}\see{aut:lng:key}
+%\item Added localization key \texttt{continuators}\see{aut:lng:key}
+%\item Added localization key \texttt{collaborator}\see{aut:lng:key}
+%\item Added localization key \texttt{collaborators}\see{aut:lng:key}
+%\item Removed localization key \texttt{byauthor}\see{aut:lng:key}
+%\item Renamed localization key \texttt{bytypeauthor} to \texttt{byauthor}\see{aut:lng:key}
+%\item Removed localization key \texttt{byeditor}\see{aut:lng:key}
+%\item Renamed localization key \texttt{bytypeeditor} to \texttt{byeditor}\see{aut:lng:key}
+%\item Renamed localization key \texttt{bytypecompiler} to \texttt{bycompiler}\see{aut:lng:key}
+%\item Added localization key \texttt{byfounder}\see{aut:lng:key}
+%\item Added localization key \texttt{bycontinuator}\see{aut:lng:key}
+%\item Added localization key \texttt{bycollaborator}\see{aut:lng:key}
+%\item Added localization key \texttt{inpress}\see{aut:lng:key}
+%\item Added localization key \texttt{submitted}\see{aut:lng:key}
+%\item Added support for Dutch (translations by Alexander van Loon)
+%\item Added support for Greek (translations by Apostolos Syropoulos)
+%\item Added notes on Greek\see{use:loc:grk}
+%
+%\end{release}
+%
%\begin{release}{0.8i}{2009-09-20}
%
%\item Fixed some bugs