-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
import bug for BIBTEX multiple keywords tag #483
Comments
Hm, hard to say if this is really a bug or a feature. The problem here is that sciencedirect produces a wrong bibtex format. |
@simonharrer |
Probably something for the JabRef developers to discuss. :) |
Something similar is already done for the author and editor fields. // The following hack enables the parser to deal with multiple
// author or
// editor lines, stringing them together instead of getting just
// one of them.
// Multiple author or editor lines are not allowed by the bibtex
// format, but
// at least one online database exports bibtex like that, making
// it inconvenient
// for users if JabRef didn't accept it.
if ("author".equals(key) || "editor".equals(key)) {
entry.setField(key, entry.getField(key) + " and " + content);
} |
This is now fixed in master with e1fcdd3 |
In the bibtex exported from sciencedirect, there are often multiple keywords tags. In fact, every tag contains one keyword.
But jabref takes only the first one, the rest are ignored.
Perhaps parsing loop would help to load all keywords ?
The text was updated successfully, but these errors were encountered: