Export in RIS format: link to PDF file
Hello,
I'm trying to export my library in RIS format, in order to import it in Papers.
The problem is that Zotero does not put any link to the PDF files in the RIS file. I tried also other formats, but I haven't found any way to get a file with information on the location of the pdf files.
I tried to manually add to the RIS file a line like:
L1 - /Users/user1/file.pdf
and Papers has been able to easily import both the meta data and the pdf file.
Is there any way to do this automatically? Any plugin project?
Thanks,
Maurizio
I'm trying to export my library in RIS format, in order to import it in Papers.
The problem is that Zotero does not put any link to the PDF files in the RIS file. I tried also other formats, but I haven't found any way to get a file with information on the location of the pdf files.
I tried to manually add to the RIS file a line like:
L1 - /Users/user1/file.pdf
and Papers has been able to easily import both the meta data and the pdf file.
Is there any way to do this automatically? Any plugin project?
Thanks,
Maurizio
//child attachments
if(item.attachments) {
for each(var attachment in item.attachments) {
addTag("L1", attachment.itemID);}}
My resulting ris-file contains the line:
L1 - 8
(8 is the itemId in my zotero from these file; it corresponds with the itemId in the Zotero rdf output) By the way the rdf translator is not really a help because it creates a new direction for the file and for RIS I think we only need the currently used path.
Maybe it is completely silly what I have done here but I hope it motivates some knowing people to going further. Thanks
Following directions provided by Zotero, I selected the output style "RefMan (RIS) export" under output styles in my Endnote program. I then went to file and export and selected text only and "RefMan (RIS)." However, I don't think endnote is actually saving in RIS format though because when I attempt to import into Zotero, a window announces that "the selected file is not in a supported format." Do you have any further directions on how to make sure my endnote library saves as RIS?
Find one of the threads that deal with Endnote import and re-post.
Also, open the exported file with a text editor and post the first item - i.e. until the first ER -
with your post.
1. Exporting the references with this complemented code for the L1 line in the RIS output.
//attachments
if(item.attachments) {
for each(var attachment in item.attachments) {
var string = "storage/"+attachment.key+"/"+attachment.title;
addTag("L1", string);}}
2. Replacing the "storage" part of the L1 line in the generated RIS output by the current used storage directory of the library added by file:// in the beginning.
For example: storage replaced by file:// C:/Users/<User Name>/AppData/Roaming/Mozilla/Firefox/Profiles/<randomstring>/zotero/storage
Maybe one can improve this.
This is great by the way. I'm going to try something similar with the BibTeX exporter.
But the better way would be to have a code which will find out the homedirection of your zotero library. But still I don’t know how to do this.
If you find the solution for the bibtex export in which forum I will find it?
I am exporting my references from Zotero in RIS. After that I imported them with endnote and the conference title field did not appear. Other fields such as authors or date are there. Is there anything I did not configured properly or is this the normal behaviour?
Zotero doesn't export the field "Conference Name" to RIS - I'm not sure if that's because of an oversight or because RIS doesn't have a field for it.
If you're interested in testing you could export a full Endnote item including a conference title to RIS, open the RIS file with a text editor (notepad, TextEdit) and see if it's in there - and what the two capital letters in front of it are.
RIS format exported by Zotero
-----------------------------------
TY - CONF
ID - 148
T1 - The MAC unreliability problem in IEEE 802.15.4 wireless sensor networks
JF - Proceedings of the 12th ACM international conference on Modeling, analysis and simulation of wireless and mobile systems
CY - Tenerife, Canary Islands, Spain
M3 - 10.1145/1641804.1641839
A1 - Anastasi,Giuseppe
A1 - Conti,Marco
A1 - Francesco,Mario Di
PB - ACM
PY - 2009///
N2 - In recent years...
KW - energy efficiency
KW - ieee 802.15.4
KW - MAC protocol
KW - reliability
KW - scalability
KW - sensor networks
SP - 196
EP - 203
SN - 978-1-60558-616-8
UR - http://portal.acm.org/citation.cfm?id=1641839
ER -
RIS format exported by EndNote
-------------------------------
TY - CONF
AB - In recent years, ...
AU - Anastasi, Giuseppe
AU - Conti, Marco
AU - Francesco, Mario Di
CY - Tenerife, Canary Islands, Spain
DA - 2009
KW - energy efficiency
ieee 802.15.4
MAC protocol
reliability
scalability
sensor networks
PB - ACM
PY - 2009
SN - 978-1-60558-616-8
SP - 196-203
ST - The MAC unreliability problem in IEEE 802.15.4 wireless sensor networks
T2 - 12th ACM international conference on Modeling, analysis and simulation of wireless and mobile systems
TI - The MAC unreliability problem in IEEE 802.15.4 wireless sensor networks
UR - http://portal.acm.org/citation.cfm?id=1641839
ID - 103
Zotero puts it into the periodical field (JF)
Endnote puts it into the secondary title field (T2)
The RIS specifications over at RefMan put it into the serial field (T3)
Also, note that Zotero currently only exports either the conference name or the proceedings title, not both (thus the confusion above - it gives precedence to the proceedings title).
I think since Zotero treats conference proceedings like book chapters in citations (at least as a fallback), it should do so during output and adopt the Endnote approach of putting the Conference (or Proceedings) Title into T2 - thoughts?
It seems to me that T2 is the best place for proceedings titles (bibutils put it in 'BT', which is equivalent): conferences are not periodicals.
Perhaps the conference name can go into T3 (though I admit this is a somewhat crude workaround to the limitations of RIS)?
Btw. - someone over at the Endnote forum wrote a modifed endnote import filter for Rodo so he's fine - Rodo - if you happen to still have the URL of those posts, could you post it here?
Zotero.addOption("exportFileData", false);
at the appropriate location. Zotero then copies all the attachments to a new directory, then sets attachment.path to the exported attachment path. You can see this in the bibtex discussion below:
http://forums.zotero.org/discussion/10825/export-to-bibtex-including-attachment-file-information/
With the specific patches
http://pastie.org/1040704
and further modifications here
https://www.zotero.org/trac/ticket/1694