Reverse chronological sort order in bibliography
Hi I'm making a custom style for putting a list of publications on a personal webpage.
I have got it sorting by year (then title) with
<sort>
<key variable="issued"/>
<key variable="title"/>
</sort>
But some people want this in reverse chronological order. Is this possible?
I have got it sorting by year (then title) with
<sort>
<key variable="issued"/>
<key variable="title"/>
</sort>
But some people want this in reverse chronological order. Is this possible?
<sort>
<key variable="issued" sort="descending"/>
<key variable="title"/>
</sort>
This works in the new processor (yay), I'm pretty sure it works fine with the current one as well.
Works perfectly thanks!
I've added a note in the wiki (csl syntax summary page).
<sort>
<key variable="type"/>
<key variable="issued"/>
<key variable="title"/>
</sort>
Many thanks, toon
Any workaround is going to be super tedious. I'm thinking you could probably create a very-extensive macro, in which you assign a different text value to each type. You could then sort by that macro, though I believe you'd have to include it in the bibiliography for that to work.