2.1 b2 PubMed import Jr. Sr. III etc.
Perhaps I misunderstood but I thought that the Zotero 2.1 with CSL 1 would import and store the author name suffix when the source provided the information. Am I mistaken? Am I missing something? Is this a simple translator issue? The PubMed data structure seems to provide the suffix as a separate entity. Yet, I don't see the author suffix within the name area of Zotero when I import a record with an an author name containing a suffix. I don't see a place for the suffix within the Zotero author display. I'm using 2.1b2, FF 3.6.12, OS X 10.6.4.
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
http://gsl-nagoya-u.net/http/pub/citeproc-doc.html#id28
name.given += ", " + suffix;
(If I have the key for the given name in a Zotero name object right there.) The processor will take care of the rest.Edit: Sorry, this would be more robust, wouldn't it:
name.given = [name.given, suffix].join(", ");
Thank you.