How to export PDF attachments to Endnote?
Dear Devs,
I know there is a way to import Endnote attachments to Zotero: http://forums.zotero.org/discussion/5311/importing-endnote-libaray-including-pdf-attachments/ But can I Export Zotero attachments (mainly PDF files) to Endnote?
Thank you!
I know there is a way to import Endnote attachments to Zotero: http://forums.zotero.org/discussion/5311/importing-endnote-libaray-including-pdf-attachments/ But can I Export Zotero attachments (mainly PDF files) to Endnote?
Thank you!
http://forums.zotero.org/discussion/9733/how-to-export-item-pdf-from-zotero-to-endnote/
Many thanks!
http://forums.zotero.org/discussion/7961/export-in-ris-format-link-to-pdf-file/
cumuluss Jun 20th 2010 edited
Now I have a two-step solution for the file path including in the RIS output.
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.