Zotero doesn't sort all pubs by full ascending date?
Hi,
Apologies if this has been noted elsewhere, but I couldn't find anything online.
I have my library sorted by year, ascending, however within a year, I notice the publications sort descending.
I.e.: I expect this in my library
Publication, June 2000
Publication, January 2000
Publication, May 1999
Publication, January 1999
However what I am seeing is this:
Publication, January 2000
Publication, June 2000
Publication, January 1999
Publication, May 1999
Is there any way to sort on the full date?
Thanks!
Donna
Apologies if this has been noted elsewhere, but I couldn't find anything online.
I have my library sorted by year, ascending, however within a year, I notice the publications sort descending.
I.e.: I expect this in my library
Publication, June 2000
Publication, January 2000
Publication, May 1999
Publication, January 1999
However what I am seeing is this:
Publication, January 2000
Publication, June 2000
Publication, January 1999
Publication, May 1999
Is there any way to sort on the full date?
Thanks!
Donna
For the Zotero library view, select the "Date" column from the upper right corner of the center pane, instead of the "Year" column.
For bibliographies, this is controlled by the citation style. What style are you using?
For my citation style, I am using a custom style, sorting using
<macro name="issued">
<date variable="issued">
<date-part name="year"/>
</date>
</macro>
And then
<key macro="issued" sort="ascending"/>
Is there another field I should be using?
Thank you!
<key variable="issued" sort="ascending"/>
If you also want the month to be printed as well, change your macro to:
<macro name="issued">
<date variable="issued">
<date-part name="month" suffix=" "/>
<date-part name="year"/>
</date>
</macro>