Didn't work properly on one entry, see ba20cb1.
Problems comes when there is already many articles with the same ID on the same year (very productive first author), and the letter increment for the ID do not check if the article is there already in the incremented IDs that already existing (turned out, it did for the example above).
Suggestion : use the google-style ID, that uses the {name}{year}{firstTitleWord} where firstTitleWord is the first word of the title containing more than 3(?) characters.
Would need a proper rework of the scripts, avoiding code duplication by centralizing code in a common module (like utils.py or something similar).
💡 Should be an opportunity to remove all accents from the bibtex IDs
Didn't work properly on one entry, see ba20cb1.
Problems comes when there is already many articles with the same ID on the same year (very productive first author), and the letter increment for the ID do not check if the article is there already in the incremented IDs that already existing (turned out, it did for the example above).
Suggestion : use the google-style ID, that uses the
{name}{year}{firstTitleWord}wherefirstTitleWordis the first word of the title containing more than 3(?) characters.Would need a proper rework of the scripts, avoiding code duplication by centralizing code in a common module (like
utils.pyor something similar).