Author Initials Before Last Name in First Author
I figured out how to edit the citation styles, and I have been able to put the (first and middle) initials before the last names of all authors except the first author.
Is there some way to do this? I realize that this is an unusual request, but my boss requested this specifically.
Currently the author section of my bibliography citations are as follows:
Johns S, R Gabe, A McGuire.
And I would like it to look as follows (but still keep in alphabetical order by the first last name i.e., Johns):
S Johns, R Gabe, A McGuire.
Any advice?
Is there some way to do this? I realize that this is an unusual request, but my boss requested this specifically.
Currently the author section of my bibliography citations are as follows:
Johns S, R Gabe, A McGuire.
And I would like it to look as follows (but still keep in alphabetical order by the first last name i.e., Johns):
S Johns, R Gabe, A McGuire.
Any advice?
@lauren -- sorry for overlooking this earlier. If you still need this, you want to delete name-as-sort-order="first"
'Name-part Formatting
The cs:name element may contain one or two cs:name-part child elements for name-part-specific formatting. cs:name-part must carry the name attribute, set to either “given” or “family”.
If set to “given”, formatting and text-case attributes on cs:name-part affect the “given” and “dropping-particle” name-parts. affixes surround the “given” name-part, enclosing any demoted name particles for inverted names.
If set to “family”, formatting and text-case attributes affect the “family” and “non-dropping-particle” name-parts. affixes surround the “family” name-part, enclosing any preceding name particles, as well as the “suffix” name-part for non-inverted names.
The “suffix” name-part is not subject to name-part formatting. The use of cs:name-part elements does not influence which, or in what order, name-parts are rendered. An example, yielding names like “Jane DOE”:'
'<macro name="editor">
<names variable="editor" delimiter=", ">
<name prefix=" " and="text" delimiter-precedes-last="never" et-al-min="4" et-al-use-first="1" initialize-with=". "/>
<label form="short" prefix=" (" suffix="), "/>
</names>
</macro>
<macro name="author">
<names variable="author">
<name form="short" and="text" delimiter-precedes-last="never" et-al-min="4" et-al-use-first="1" initialize-with="" sort-separator=""/>
<label form="short" prefix=" (" suffix=")"/>
<substitute>
<names variable="editor"/>
</substitute>
</names>
</macro>
<macro name="author-bibliography">
<names variable="author">
<name and="text" delimiter-precedes-last="never" et-al-min="4" et-al-use-first="1" initialize-with="." name-as-sort-order="all" sort-separator=" "/>
<label form="short" prefix=" (" suffix=")"/>
<substitute>
<names variable="editor"/>
</substitute>
</names>
</macro>
<macro name="author-long">
<names variable="author">
<name and="text" delimiter-precedes-last="never" et-al-min="4" et-al-use-first="1" initialize-with=". "/>
<substitute>
<names variable="editor">
<name and="text" delimiter-precedes-last="never" et-al-min="4" et-al-use-first="1" initialize-with=". " sort-separator=" "/>
<label form="short" prefix=" (" suffix=")"/>'
And what style is this based on?
So the way I'd fix this is to go down to the citation section and replace all instances of author-long with author. E.g. change
<if type="book legal_case motion_picture report" match="any">
<group>
<text macro="author-long" suffix=", "/>
to
<if type="book legal_case motion_picture report" match="any">
<group>
<text macro="author" suffix=", "/>
and do the same in the other instances of author-long
'drag-and-drop the CSL style file onto an open Firefox browser window, and click the “Install” button (you can ignore the grey bar at the top of the window (“This XML style does not appear…”)). '
The file is in my download box, how can I drag and drop into firefox browser window? Which window and where to drop to? Where is the 'install' button?
The install button will appear then, as in the screenshot.
If you find that confusing, follow the instructions for Zotero Standalone, which work in Firefox, too.
Case concerning Oil Platforms (Islamic Republic of Iran v United States of America) Merits, Judgment, ICJ Reports 2003, 161, Declaration of Judge Higgins, at para 49
Is there an easy way to do it?
Formatting case citations is quite problematic because of the different nature of legal citations across jurisdictions. What you have available in Zotero is modelled after US case citations (and barely enough to cite those). Citing non-US legal cases (and in particular international and/or EU courts) is going to be clumsy.
'Kohen, 'Keeping Subsequent Agreements and Practice in Their Right Limits', in G. Nolte (ed.), Treaties and Subsequent Practice (2013) , at 32Linderfalk, supra note 14, at 166. '
Also the editor's name still has an initial even though there is no reference to 'long' in the text file anymore, except these:
'<else-if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid" form="long" font-style="italic" text-case="capitalize-first"/>'
'<else-if position="ibid">
<text term="ibid" form="long" font-style="italic" text-case="capitalize-first"/>'
Should I change these too and if so, how?
' “ibid”/”ibid-with-locator”/”subsequent”: cites referencing previously cited items have the “subsequent” position. Such cites may also have the “ibid” or “ibid-with-locator” position when:
the current cite immediately follows on another cite, within the same citation, that references the same item
or
the current cite is the first cite in the citation, and the previous citation consists of a single cite referencing the same item
If either requirement is met, the presence of locators determines which position is assigned:
Preceding cite does not have a locator: if the current cite has a locator, the position of the current cite is “ibid-with-locator”. Otherwise the position is “ibid”.
Preceding cite does have a locator: if the current cite has the same locator, the position of the current cite is “ibid”. If the locator differs the position is “ibid-with-locator”. If the current cite lacks a locator its only position is “subsequent”.
“near-note”: position of a cite following another cite referencing the same item. Both cites have to be located in foot or endnotes, and the distance between both cites may not exceed the maximum distance (measured in number of foot or endnotes) set with the near-note-distance option (see Note Distance).
Whenever position=”ibid-with-locator” tests true, position=”ibid” also tests true. And whenever position=”ibid” or position=”near-note” test true, position=”subsequent” also tests true.'
I very much appreciate your help!
A document that describes every possible action in a citation style would be many thousands of pages long.
The test pane gives you a sandbox where you can try out things without any risk of breaking anything. There's also the visual editor, which you might find easier.
I try to help people who need a single simple edit (like your first one) or who've made an effort editing a style but hit a roadblock, but that's all I have time for, sorry.