-
-
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
Incorrect RIS fields #3634
Comments
Also, while I have your attention. It appears that your RIS exporter is leaving tons of blank lines (ostensibly where optional fields were skipped). Here's an example that I just tried: TY - BOOK
AU - Smith, Bob
AU - Doe, Jan
AU - Brown, Judy
A2 - Martin, Steve
A2 - Clark, Joe
T1 - Testing Book Title
PB - Test Publisher
Y1 - 2015/october
VL - 1
ER - |
Thanks for reporting! This shouldn't be too hard to fix. Related issue: #2607 |
Sure thing. Happy to help. Here's the list of field mappings that I use for RIS files: Also... "stateful" fields: https://github.com/dsifford/astrocite/blob/668a9e4a0cb15a21a310d38e6e3f9ec5af7db9a0/packages/astrocite-ris/src/parser.ts#L58-L65 and finally, these: https://github.com/dsifford/astrocite/blob/master/packages/astrocite-ris/src/parser.ts#L90-L109 The above fields include the standardized fields that you'd expect, but also non-standard (but highly used) fields that I've seen other applications export into (e.g., Zotero, Endnote, etc). Hope that's useful! |
The import-related problems described in this issue should be fixed by #3642. The export-related formatting issues are still present, but since this is about formatting and not functional correctness, I'll reclassify this issue from bug to enhancement. |
The blank lines in the export are now resolved as well by #3661 So, I am closing this issue. |
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
According to the RIS specification,
A1-A4
are exclusively author fields. Only theED
field should be used for editors.Related: dsifford/academic-bloggers-toolkit#409 (comment)
The text was updated successfully, but these errors were encountered: