Author format for multiple-word family names#1049
Open
mayebejames wants to merge 1 commit intojkitchin:masterfrom
Open
Author format for multiple-word family names#1049mayebejames wants to merge 1 commit intojkitchin:masterfrom
mayebejames wants to merge 1 commit intojkitchin:masterfrom
Conversation
Line 891:
Simple switch to change formatting authors as "{given name} {family name}" to "{family name}, {given name}".
This reduces ambiguity for multiple-word family names, such as van De Merwe or Gonzalez López. Standardising on this allows simple bibtex parsers to parse authors lists correctly without trying to catch all the exceptions.
I admit that I don't have a good understanding of how :family and :given are being generated but this works for all articles I have tested; I imagine journals encode family and given names separately within their more expressive metadata.
Owner
|
I don't object to this, but my preference would be to add some user defined variable to choose this (with the default setting being the current way it is done), then do something based on that value, e.g. with (cond). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I think that org-ref is an incredible utility, and doi-utils makes adding references to my bibliography seamless. One of the only difficulties I come across is when some parsers attempt to parse authors with multiple-word family names.
Bibtex permits three different methods for combining the parts of authors' names:
Doi-utils appears to utilise the first of these, which is the most human-readable but the least explicit. This method loses the differentiation between multiple-word given names and family names. This can be an issue for some bibtex parsers as they then need an exception system to identify likely multiple-word family names. Missing multiple-word family names would lead to the author Anton van de Merwe being cited as "Merwe et al." rather than the correct "van de Merwe et al.".
This simple change fixes this issue and has no obvious downstream effects that I have found, although I have not rigorously tested this.
I appreciate that this may fall into the remit of personal choice, but offer this a pull request to offer an alternative for anyone else also struggling with this issue when referencing using doi-utils.
Thank you for your continued excellent work on this tool.