I am trying to embed a graphics pdf either using includegraphics or \graphicspath, however my directory includes apostrophes that are generating errors in the call. (I know this because when I put the visualizations in a parent file without an apostrophe it works). For example, the following does not work:
\includegraphics[scale=.2]{/Users/jim/Dropbox/jim's Personal Documents/figures/plot.pdf}
While this works:
\includegraphics[scale=.2]{/Users/jim/Dropbox/figures/plot.pdf}
Any idea how to reference a file through a path name with an apostrophe? Thanks.