I want to add hyperlinks to external pdfs (which are saved in the local file system) and to specific pages of these pdfs to a LaTeX document on MacOS X and opening them with Skim.app (default).
My problem is: it works, if the pdf is in the same path as the latex document and I use a \href{./filename.pdf} (However, the [page=2] option does not work then.)
But if I try to use an asolute path like \href{/Users/myaccount/folder/test.pdf} or {/Volumes/Data/folder/folder/test.pdf}, a click on the link in the pdf created by LaTeX does not open the linked file.
I also tried to use "file:///Volumes/.." and "run:///volumes..", but it does not work.
However, I can successfully open a link like "file:///Volumes/Data/Folder/file.pdf" in Safari!
How can I fix that?
I'm using TeXLive 2010 on OS X 10.6.5 and pdflatex for compiling.
minimal example:
\documentclass[11pt]{scrreprt}
\usepackage{hyperref}
\hypersetup{bookmarksopenlevel={2}, bookmarksopen = true,
colorlinks= false, linkbordercolor = 0 1 0.5, urlbordercolor = 0 0 1
}
\begin{document}
that works, but it opens on page 1 and not on page 3
\href[page=3]{run://test.pdf}{relative path}
that does not work:
\href[]{/Volumes/Daten/test.pdf}{absolute path}
\end{document}