CSL 1.0 :: Bold name & initials of 1st author in bibliography ??
I am working on a numbered citation style that requires the name of the first author (not other authors and not editors etc.) to be in bold face in the bibliography. This doesn't seem possible with CSL 0.8. Will this be possible in Zotero once CSL 1.0 is implemented? After examining the CSL 1.0 schema it appears that the change may not make automation of this possible and that I will need to continue to manually dress the bibliography.
When a name variable is rendered with et-al-min and et-al-use-first both set to the same value of "1", a subsequent rendering of the same variable (by another names element) will omit the names already rendered. This allows special formatting decorations on the first name, but the arbitration of joins between names is not performed (i.e. the use of ", and" or ", " depending on whether the first-listed name is followed by one, or more than one, other name) -- you would have to use a uniform join to the remaining string of authors, like " with ".
(Note that this behavior is specific to citeproc-js; ordinary processor behavior under the CSL specification would be for et-al-min="2" + et-al-use-first="1" and et-al-min="1" + et-al-use-first="1" to behave in the same way, with no truncation of a subsequent rendering of the same name in either case.)
Example 1: Example 2:
Also, I don't recommend using/recommending non-standard solutions (ones not in the CSL spec).
Thank you for the comments and suggestions.