Sorting authors with pages in a book / journal

Hello
Here is my problem:
The same author writes two contributions in a journal or in a book. My aim would be to sort these contributions according to their pages in the journal/book

The CSL styles gives:
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true">
<sort>
<key variable="issued"/>
</sort>
<layout>
[...]
</layout>
</citation>
<bibliography subsequent-author-substitute="">
<sort>
<key macro="author"/>
<key variable="issued"/>
<key variable="container-title"/>
<key variable="locator"/>
<key variable="title"/>
</sort>
[...]

Results:
It doesn't work, it keeps the alphabetical order of the article/chapter title as a sort key within this author.

Example:
DELLA CORTE M.
1921a : « Altra villa rustica, esplorata dal signor Giovanni di Palma, nel fondo “Agricoltura” di sua proprietà, in contrada Pisanella, comune di Boscoreale, l’anno 1906 (giorni 15) e l’anno 1908 (mesi 6) », Notizie degli scavi di Antichità, p. 461‑467.
1921b : « Villa rustica, esplorata dal sig. cav. Carlo Rossi-Filangieri nel fondo di Antonio Prisco in contrada Civita-Giuliana (Comune di Boscoreale), nei mesi da febbraio a luglio dell’anno 1903 », Notizie degli scavi di Antichità, p. 415‑421.
1921c : « Villa rustica, esplorata dal sig. Feruccio De Prisco nel fondo D’Acunzo, posto immediatamente a mezzogiorno del piazzale della stazione ferroviaria di Boscoreale (Ferrovie dello Stato), l’anno 1903 », Notizie degli scavi di Antichità, p. 436‑442.

While I would like to obtain
Della Corte M.
1921a [previously b] : « Villa rustica, esplorata dal sig. cav. Carlo Rossi-Filangieri nel fondo di Antonio Prisco in contrada Civita-Giuliana (Comune di Boscoreale), nei mesi da febbraio a luglio dell’anno 1903 », Notizie degli scavi di Antichità, p. 415‑421.
1921b [previously c]: « Villa rustica, esplorata dal sig. Feruccio De Prisco nel fondo D’Acunzo, posto immediatamente a mezzogiorno del piazzale della stazione ferroviaria di Boscoreale (Ferrovie dello Stato), l’anno 1903 », Notizie degli scavi di Antichità, p. 436‑442.
1921c [previously a]: « Altra villa rustica, esplorata dal signor Giovanni di Palma, nel fondo “Agricoltura” di sua proprietà, in contrada Pisanella, comune di Boscoreale, l’anno 1906 (giorni 15) e l’anno 1908 (mesi 6) », Notizie degli scavi di Antichità, p. 461‑467.

Any idea to fix this?
Thanks in advance
  • haven't checked in detail but
    <key variable="locator"/>
    doesn't make sense in the bibliography - locators only apply to citations.
    It seems like you'd want
    <key variable="page"/>
  • Thanks for the answer
    It would have been logical, my mistake, but it doesn't work. I have also tried <key variable="page-first"/>. It doesn't change anything.
    Tricky
  • My mistake again...
    With a new Word document, and
    <sort>
    <key macro="author"/>
    <key variable="issued"/>
    <key variable="container-title"/>
    <key variable="page-first"/>
    <key variable="title"/>
    </sort>
    it perfectly works
    Thanks a lot, next time I won't use locator for page...
  • ...
    Just a linked question: is it to be considered a bug that Word doesn't really use an updated style when citations and bibliography already exist?
  • I don't know. It's certainly known (you can get it to use the updated style by switching to a different style and back). IIRC Rintze asked Simon about this in the past, but I don't remember anything coming of it.
Sign In or Register to comment.