zepinglee/citeproc-lua

Bug with cite position

epireyn opened this issue · 3 comments

Describe the bug
Two consecutive cites to the same reference are considered "subsequent" but not "Ibid (with locator)".
This happens when name-as-sort-order="all" and that the reference only has one author. It doesn't happen if it has more than one author or if name-as-sort-order="first".

Additional information

  • TeX distribution: MikTex 2023
  • Package citation-style-language version: main branch
  • LaTeX engine: xelatex

To Reproduce

\documentclass{article}

\begin{filecontents}[overwrite, noheader]{\jobname.json}
[
    {
    "ISBN": "9782200632694",
    "author": [
      {
        "family": "Amossy",
        "given": "Ruth"
      },
      {
        "family": "Pierrot",
        "given": "Anne Herschberg"
      }
    ],
    "collection-title": "Cursus",
    "edition": "4",
    "id": "Amossy2021",
    "issued": {
      "date-parts": [
        [
          2021,
          6,
          9
        ]
      ]
    },
    "keyword": "General, Language Arts & Disciplines, Social Science",
    "publisher": "Armand Colin",
    "publisher-place": "Paris",
    "title": "Stéréotypes et clichés : Langue, discours, société",
    "title-short": "Stéréotypes et clichés ",
    "type": "book"
  },
  {
    "ISBN": "2871300658",
    "author": [
      {
        "family": "Lits",
        "given": "Marc"
      }
    ],
    "collection-number": "4",
    "collection-title": "Bibliothèque des paralittératures",
    "edition": "2",
    "id": "Lits1999",
    "issued": {
      "date-parts": [
        [
          1999
        ]
      ]
    },
    "number-of-pages": "208",
    "publisher": "Éd. du CÉFAL",
    "publisher-place": "Liège",
    "title": "Le roman policier: Introduction à la théorie et à l’histoire d’un genre littéraire",
    "title-short": "Le roman policier",
    "type": "book"
  },
]
\end{filecontents}

\usepackage[style = chicago-note-bibliography]{citation-style-language}
\addbibresource{\jobname.json}
\usepackage{hyperref}

\begin{document}
This is the first cite\cite[page = 103--200]{Amossy2021}

This is the second cite\cite[page = 103--104]{Amossy2021}

These should be working correctly. But if I cite those two:

First\cite[page = 105--130]{Lits1999}

Second\cite[page = 105--130]{Lits1999}

The page range doesn't matter. It can be null, different or identical.

\printbibliography
\end{document}

Screenshots
image

Two consecutive cites to the same reference are considered "subsequent" but not "Ibid (with locator)".

I can't reproduce the results in the screenshot with the given TeX code. My output is as follows.

Screenshot 2024-02-22 at 13 48 41

Note 2 and 4 are exactly produced from the "ibid ibid-with-locator" branch of chicago-note-bibliography.csl. Note that title-short isn't outputted.

<if position="ibid ibid-with-locator" match="any">
<group delimiter=", ">
<text macro="contributors-short"/>
<group delimiter=" ">
<group delimiter=", ">
<choose>
<if variable="author editor translator" match="none">
<text macro="title-short"/>
</if>
</choose>
<text macro="case-locator-subsequent"/>
</group>
<text macro="case-pinpoint-subsequent"/>
</group>
<choose>
<if match="none" type="legal_case">
<text macro="point-locators-subsequent"/>
</if>
</choose>
</group>
</if>

Are you expecting the ibid. term? Perhaps you can use chicago-note-bibliography-with-ibid.csl or chicago-fullnote-bibliography-with-ibid.csl.

This happens when name-as-sort-order="all" and that the reference only has one author. It doesn't happen if it has more than one author or if name-as-sort-order="first".

This is not likely to happen. Can you provide the full CSL style?

I made it work by deleting the output folder before compiling again, so the issue probably comes from one of the compiled files. In other words, it only works when citeproc is run for the first time. All the other times, the described issue occured.

Please provide a full example so that I can help.