[Tex/LaTex] biblatex – quote in chronological order but bibliography list must be alphabetical order

biblatexcitingsorting

I want to use more than one type of specification in my bibliography. I want to quote in chronological order but have the bibliography list in alphabetical order.

If I am quoting 2-3 references in the middle of my thesis writing, I want them to be displayed in chronological order.

e.g.


{biblatex}

The human race has had a fast and accelerating growth in terms of technology and communication, in the past decade, [Turner, 2001; Allis
et al., 2007].

{bibliography}


But When the bibliography is displayed at the end of the document, I want them to be displayed in alphabetical order

e.g.


BIBLIOGRAPHY

  1. Allis, C. D., Jenuwein, T., Reinberg, D., and Caparros, M. L. (2007). Epigenetics. Cold Spring Harbor Press
  2. Turner, B. M. (2001). Chromatin and Gene Regulation – Mechanisms in Epigenetics. 2nd Edition, BlackWell Science Ltd.

How should this be achieved given than I use bib latex package? I have not pasted the code of my biblatex line, but I hope that some1 can help me sort this out as not many topics in this forum is handling it.

Best Answer

Having different sorting within the text and the bibliography is currently possible with the development versions of biblatex and biber.
(UPDATE: By now biblatey 2.x and corresponding biber are released and incuded in both MiKTeX and Texlive 2012.)

The sorting scheme for citations has to be defined in the preamble. The sorting scheme for the bibliography is defined as an option to \printbibliography.

\documentclass{article}
\usepackage[backend=biber,style=authoryear,sortcites,sorting=ynt]{biblatex}
\usepackage[colorlinks]{hyperref}

\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem ipsum dolor sit amet \parencite{cicero}.
At vero eos et accusam et justo \parencite{wassenberg,angenendt}.
Lorem ipsum dolor sit amet \parencite{wassenberg,cicero,angenendt}.
\printbibliography[sorting=nyt]
\end{document}

enter image description here