Update bluebook-inline.csl#8161
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-inline.csl (modified style; unchanged output for sample items)CSL search by example Citation style editor; , https://editor.citationstyles.org/searchByExample/ (last visited Dec 15, 2012); Martin Fenner et al., A data citation roadmap for scholarly data repositories, 6 Scientific Data (2019); , https://www.nature.com/articles/s41597-019-0031-8 (last visited Mar 31, 2025) |

Problem
In
bluebook-inline.csl, short cites with 3 or more authors render withan Oxford comma before the ampersand:
Bluebook author-list convention is "A, B & C" — no comma before the
ampersand. Expected:
Cause
The two short-cite
<name>elements (lines 40, 47) omitdelimiter-precedes-last="never", so they fall back to CSL'scontextualdefault — inserting a comma before the connector whenthere are 3+ names.
The other four
<name>elements in this file (lines 73, 104, 118, 135)already specify
delimiter-precedes-last="never". The two short-citeelements are the only ones missing the attribute.
Why this is uncontroversial
This brings the two short-cite
<name>elements into alignment with thefile's own convention used everywhere else.
Companion to PR #8160, which fixes the same defect (plus an
and="text"→and="symbol"correction that doesn't apply here) inbluebook-law-review.csl.Scope
2-name cites are unchanged.
delimiter-precedes-lastis a standard CSL attribute.