Update bluebook-law-review.csl#8160
Conversation
|
Awesome! You just created a pull request to the Citation Styles Language styles repository. One of our human volunteers will try to get in touch soon (usually within a week). In the meantime, I will run some automated checks. You should be notified of the results in a few minutes. If you haven't done so yet, please make sure your style validates and follows all our other Style Requirements. To update this pull request, visit the "Files changed" tab above, click on the ellipsis button in the top-right corner of your style, and then select "Edit file" to start editing: If you have any questions, please leave a comment and we'll get back to you. While we usually respond in English, feel free to write in whatever language you're most comfortable. |
|
😃 Your submission passed all our automated tests. Below are some sample citations generated based on your proposed changes: bluebook-law-review.csl (modified style)CSL Search by Example, Citation style editor (2012), https://editor.citationstyles.org/searchByExample/; Martin Fenner et al., A Data Citation Roadmap for Scholarly Data Repositories, 6 Sci. Data (2019), https://www.nature.com/articles/s41597-019-0031-8. <i>CSL Search by Example</i>, <span style="font-variant: small-caps">Citation style editor</span> (2012), https://editor.citationstyles.org/searchByExample/; Martin Fenner et al., <i>A Data Citation Roadmap for Scholarly Data Repositories</i>, 6 <span style="font-variant: small-caps">Sci. Data</span> (2019), https://www.nature.com/articles/s41597-019-0031-8.<br/>
-Tania Galindo-Castañeda et al., <i>Locating the Microbes along the Maize Root System under Nitrogen Limitation: a Root Phenotypic Approach</i>, 136 <span style="font-variant: small-caps">Ann. Bot.</span> 1143 (2025), https://academic.oup.com/aob/article/136/5-6/1143/8231684; <span style="font-variant: small-caps">Beyond Varieties of Capitalism: Conflict, Contradictions, and Complementarities in the European Economy</span> (Bob Hancké, Martin Rhodes, & Mark Thatcher eds., 2007), https://academic.oup.com/book/5397.<br/>
+Tania Galindo-Castañeda et al., <i>Locating the Microbes along the Maize Root System under Nitrogen Limitation: a Root Phenotypic Approach</i>, 136 <span style="font-variant: small-caps">Ann. Bot.</span> 1143 (2025), https://academic.oup.com/aob/article/136/5-6/1143/8231684; <span style="font-variant: small-caps">Beyond Varieties of Capitalism: Conflict, Contradictions, and Complementarities in the European Economy</span> (Bob Hancké, Martin Rhodes & Mark Thatcher eds., 2007), https://academic.oup.com/book/5397.<br/>
Isabela Mares, <i>Firms and the Welfare State: When, Why, and How Does Social Policy Matter to Employers?</i>, <i>in</i> <span style="font-variant: small-caps">Varieties of capitalism: the institutional foundations of comparative advantage</span> 184 (Peter A. Hall & David Soskice eds., 2001), https://academic.oup.com/book/301/chapter/134896619.<br/>
|

Problem
Two related defects in
bluebook-law-review.cslcause 3+ author short citesand 3+ editor full cites to render with separators that don't match Bluebook
author-list convention.
For a three-author short cite of a book, the current output is:
Bluebook author-list convention is "A, B & C" — no Oxford comma before the
ampersand, and "&" rather than "and". Expected:
The same Oxford-comma defect affects 3+ editor lists in full cites via the
editor-translatormacro.Cause
name-short-macro(line 70) usesand="text"and omitsdelimiter-precedes-last="never", so it falls back to CSL'scontextualdefault — inserting a comma before the connector when there are 3+ names.
editor-translator(line 94) also omitsdelimiter-precedes-last="never",with the same effect on 3+ editor lists.
Why this is uncontroversial
The global
name-macroin this file (line 41) already specifiesand="symbol" delimiter-precedes-last="never", so full author citesrender correctly. The sibling style
bluebook-inline.cslalreadyuses
and="symbol"in its short-cite<name>elements (lines 40, 47).This PR brings the two stragglers in
bluebook-law-review.cslintoalignment with the file's own global convention.
Note:
bluebook-inline.cslis missingdelimiter-precedes-last="never"on the same short-cite
<name>elements and produces the sameOxford-comma defect for 3+ author short cites; a follow-up PR will
address that.
Scope
cites are unchanged.