-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Description
Greetings.
I'm the developer of the Academic Blogger's Toolkit plugin for WordPress and some of my users were having difficulty importing RIS from jabref. Upon further investigation, it looks like you are currently mis-keying some fields.
jabref/src/main/java/org/jabref/logic/importer/fileformat/RisImporter.java
Lines 147 to 152 in 723af6d
| } else if ("A2".equals(tag) || "A3".equals(tag) || "A4".equals(tag)) { | |
| if (editor.isEmpty()) { | |
| editor = value; | |
| } else { | |
| editor += " and " + value; | |
| } |
According to the RIS specification, A1-A4 are exclusively author fields. Only the ED field should be used for editors.