Bilbliography in chronological order
Is there an available citation style that sorts the bibliography in chronological order instead of author name? If yes, which one?
Thanks!
Thanks!
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
<sort>
<key variable="issued"/>
</sort>
in the sort section of the bibliography will do it, though.
See here for general instructions
http://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
You may just want to add <key variable="issued"/> as the first line of the sort section (rather than replacing the section), so that citations with the same issued date will still be sorted by author.
<sort>
<key variable="issued" sort="descending"/>
<key macro="contributors"/>
</sort>
Thanks again.