cryptobib / db

CryptoBib Database for Developers
40 stars 66 forks source link

Various name fixes #227

Closed ludopulles closed 9 months ago

ludopulles commented 9 months ago

The goal of this pull request is to improve various names in the cryptobib library:

  1. Fixes braces around last names that look like Dutch, having prefixes ("tussenvoegsels") (see https://onzetaal.nl/taalloket/hoofdletters-namen-nederland ). In particular, note that "Barry Van Leeuwen" should be "Barry {van Leeuwen}", according to the footnote on the first page of https://eprint.iacr.org/2023/014.pdf: Please, notice that van Leeuwen is the family name of the third author, thus, instead of [GPL23], the correct acronym for citing this paper would be [GPV23] or maybe [GPvL23]
  2. Adding braces around the last name "Meyer-Hilfiger"
  3. There was one case of "Naya{-}Plasencia", which is fixed.
  4. Replacing \i when accents are written, which should be removed according to https://github.com/cryptobib/db_import/blob/master/import.py#L724
  5. Last name of Damien Stehlé did not always have an accent (because of ePrint).

It seems like some of these name issues arise because they are not part of the "authors_subs_re" list on https://github.com/cryptobib/db_import/blob/master/import.py#L44 . I like the knowledge of how this db_import works, so perhaps it's better to leave that to someone else.