numeric + apa = aggro...
Hi. I've been asked to create a weird Frankenstein's Monster style - superscripted numeric in-text citations, then the bibliography is in numeric order, with the rest of the citation in APA style. I managed to modify the APA style using the CSL editor to do this, but the in-text citations change numbers as I add citations so that they remain in alphabetical order by author (i.e. instead of intended 1,2,3 they change so they might be 1,3,2. This is driving me nuts - is there any way to fix this?
<sort>
<key variable="citation-number"/>
</sort>
for the citation sort, otherwise you can get citations cited multiple times in the wrong order (i.e. [13, 7])
<citation collapse="citation-number"> [line 574]
<sort>
<key variable="citation-number"/>
</sort>
<layout vertical-align="sup" delimiter=",">
<group>
<text variable="citation-number" vertical-align="sup"/>
<text macro="citation-locator"/>
</group>
</layout>
</citation>
<bibliography et-al-use-last="true" entry-spacing="0" line-spacing="2" hanging-indent="true">
<layout>
Yes, that looks correct.