Author format for multiple-word family names #1049
Open
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.