Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't handle season for journal article #81

Open
nickw2066 opened this issue Dec 23, 2024 · 2 comments
Open

Doesn't handle season for journal article #81

nickw2066 opened this issue Dec 23, 2024 · 2 comments

Comments

@nickw2066
Copy link

Describe the bug
It seems there might not yet be support for month-as-season. See: https://docs.citationstyles.org/en/stable/specification.html#seasons

Additional information

  • TeX distribution: MacTeX 2024, TeX Live 2022
  • Package citation-style-language version: latest
  • LaTeX engine: lualatex

To Reproduce

% !TEX encoding = UTF-8 Unicode
\documentclass{article}

\begin{filecontents}[overwrite, noheader]{\jobname.json}
[
    {
        "id": "Henkin2021-Eviden66",
        "type": "article-journal",
        "author": [
            {
                "family": "Henkin",
                "given": "Roni"
            }
        ],
        "title": "Evidentiality and Mirativity in Traditional Negev Arabic: Morphological, Lexical and Discourse-Syntactic Strategies",
        "title-short": "Evidentiality in Negev Arabic",
        "volume": "66",
        "issue": "1",
        "container-title": "Journal of Semitic Studies",
        "page": "153-83",
        "URL": "https://doi.org/10.1093/jss/fgaa039",
        "issued": {
            "date-parts": [
                [
                    "2021",
                    "season-01"
                ]
            ]
        }
    }
]

\end{filecontents}

\usepackage{citation-style-language}
\cslsetup{style = turabian-fullnote-bibliography}
\addbibresource{\jobname.json}

\begin{document}

Does not compile (though changing "season-01" to "1" works fine).\cite{Henkin2021-Eviden66}
\\
See: \url{https://docs.citationstyles.org/en/stable/specification.html#seasons}

\printbibliography

\end{document}

My style file is from: https://www.zotero.org/styles?q=turabian

@zepinglee
Copy link
Owner

The seasons are represented by 21–24 according to Extended Date/Time Format (EDTF) (see https://www.loc.gov/standards/datetime/).

The issued should be

        {
            "date-parts": [
                [
                    "2021",
                    21
                ]
            ]
        }

@nickw2066
Copy link
Author

nickw2066 commented Dec 25, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants