Hello,
I am using BibTeX and I have more than 53 references to put into the bibliography. I have created a BibTeX file and I would like to sort those references by year of publications : 2012, 2011, 2010, ...
Is there any command which can do it ?
Thanks
BibTeX, biblatex and biber ⇒ Bibliography sorted by Year
NEW: TikZ book now 40% off at Amazon.com for a short time.

Bibliography sorted by Year
I don't know if you need a particular style, but you can sort bibliography data using the databib package (part of the datatool bundle).
Regards
Nicola Talbot
Code: Select all
\documentclass{article}
\usepackage{databib}
\begin{document}
% First argument is the name of new datatool database
% Second argument is list of .bib files
\DTLloadbbl{mybibdata}{acmtr}
% Sort database in order of year starting from most recent
\DTLsort{Year=descending}{mybibdata}
% Add citations
\nocite{*}
% Display bibliography
\DTLbibliography{mybibdata}
\end{document}
Nicola Talbot
LaTeX Resources: http://www.dickimaw-books.com/latexresources.html
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/