[Tex/LaTex] Biblatex enumerating sorted bibliography (using authoryear-ibid style)

biblatexnumbering

How can I set biblatex to insert "1. " before first bibliography item and so on? The bibliography is sorted by author and the numbers are not meant to be used anywhere else.

Best Answer

Biblatex manual section 3.5.7 actually has a solution for this, I must have missed it the previous time. Changed \list to \enumerate:

\defbibenvironment{bibliography}
  {\enumerate
     {}
     {\setlength{\leftmargin}{\bibhang}%
      \setlength{\itemindent}{-\leftmargin}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}}
  {\endenumerate}
  {\item}
Related Question