-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fuzzy matching for journal abbreviations #12467
Comments
/assign-me |
👋 Hey @arraymahdi, thank you for your interest in this issue! 🎉 We're excited to have you on board. Start by exploring our Contributing guidelines, and don't forget to check out our workspace setup guidelines to get started smoothly. In case you encounter failing tests during development, please check our developer FAQs! Having any questions or issues? Feel free to ask here on GitHub. Need help setting up your local workspace? Join the conversation on JabRef's Gitter chat. And don't hesitate to open a (draft) pull request early on to show the direction it is heading towards. This way, you will receive valuable feedback. Happy coding! 🚀 ⏳ Please note, you will be automatically unassigned if the issue isn't closed within 90 days (by 07 May 2025). A maintainer can also add the "📌 Pinned"" label to prevent automatic unassignment. |
Could you please clarify which search you intended to add the fuzzy matching to— the web search or the search within the imported articles? I just want to make sure I understand correctly. 😊 |
The search used to match the journal in the journal field to an entry in the list of journal abbreviations |
Quality -> Abbreviate journal names in the menu bar |
Hi, @Test
void testSlightDifferences() {
assertTrue(new Abbreviation("Long Name", "L. N.").isSimilar("Longn Name"));
}
@Test
void testMissingLetter() {
assertTrue(new Abbreviation("Long Name", "L. N.").isSimilar("Long ame"));
}
@Test
void testPunctuationDifferences() {
assertTrue(new Abbreviation("Long Name", "L. N.").isSimilar("Long, Name"));
}
@Test
void testCaseDifferences() {
assertTrue(new Abbreviation("Long Name", "L. N.").isSimilar("LONG NAME"));
} |
Is your suggestion for improvement related to a problem? Please describe.
Often, the journal abbreviation feature will do nothing because there is a slight difference in the full journal name. Such as capitalization, use of punctuation, or subtitles.
Describe the solution you'd like
I want to be able to use fuzzy matching, ignoring minor differences like this.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: