How to suppress author in subsequent citations in text?
Hi, I use Chicago 17th author-date style for my PhD thesis. Recently, my mentor asked me to suppress author name in text in subsequent citations, and even year if it is the same source.
For instance, to change this:
The argument that all dogs are black (Brown 1990, 152) is a contentious one (Brown 1992, 166) and outdated (Brown 1992, 172).
Into this:
The argument that all dogs are black (Brown 1990, 152) is a contentious one (1992, 166) and outdated (172).
I found this topic, but it's for MLA:
https://forums.zotero.org/discussion/47739/in-text-subsequent-citations-dont-suppress-author
I need the same thing, just for Chicago. Or, if the year cannot be supressed, at least the author's last name? Also, it doesn't matter if it is not in the same paragraph.
For instance, to change this:
The argument that all dogs are black (Brown 1990, 152) is a contentious one (Brown 1992, 166) and outdated (Brown 1992, 172).
Into this:
The argument that all dogs are black (Brown 1990, 152) is a contentious one (1992, 166) and outdated (172).
I found this topic, but it's for MLA:
https://forums.zotero.org/discussion/47739/in-text-subsequent-citations-dont-suppress-author
I need the same thing, just for Chicago. Or, if the year cannot be supressed, at least the author's last name? Also, it doesn't matter if it is not in the same paragraph.
So you'd need to add that and then basically repeat what is shown in that other thread.
@damnation
How do I add that functionality?
@adamsmith
I think I did try that. I mean, I checked the "Omit Author" in the Style Editor, but it didn't change anything.
Currently, when I enter citation, I click on it and check "Omit Author" (next to prefix, suffix, etc.), but it's becoming tedious, because I sometimes have to rearrange sentences, and then again edit the citations. I had hopped for some automatic solution?
https://github.com/citation-style-language/styles/blob/master/chicago-author-date.csl#L642
and after 660
https://github.com/citation-style-language/styles/blob/master/chicago-author-date.csl#L660
this will just give you page numbers; you can play with adding
<date variable="issued" form="numeric" date-parts="year"/>
into the first bit of code if you want year and page numberNote that this will only work for the same work; automatically omiting an author that is repeated when citing a different work is not possible.
<group delimiter=", ">
<date variable="issued" form="numeric" date-parts="year"/>
<text variable="locator"/>
</group>
should work.