Skip to content

Instantly share code, notes, and snippets.

@derickfay
Created January 31, 2014 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derickfay/8740921 to your computer and use it in GitHub Desktop.
Save derickfay/8740921 to your computer and use it in GitHub Desktop.
Export BibDesk citations as individual rtf files
set theFolder to POSIX path of (choose folder with prompt "Choose target folder for new documents:")
tell application "BibDesk"
set thePubs to selection of document 1
repeat with thePub in thePubs
set filename to (theFolder as string) & (cite key of thePub as string) & ".rtf"
export document 1 using template "Template" to filename for thePub --insert your template name here
end repeat
end tell
@derickfay
Copy link
Author

For use in preparing syllabi in scrivener

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment