I use LaTeX and want to create a bookmark which opens a file but I want to specify the page no. I have looked at texdoc bookmark but cannot get it to work.
Anyone any ideas?
I use LaTeX and want to create a bookmark which opens a file but I want to specify the page no. I have looked at texdoc bookmark but cannot get it to work.
Anyone any ideas?
Key gotor specifies the external PDF file, page the page number (1-based), and view configures, how the page is displayed, e.g. Fit the whole page, with FitH 800 the page width is showed at vertical position 800 bp from the bottom.
Example:
\documentclass{article}
\usepackage{hyperref}
\usepackage{bookmark}
\begin{document}
Hello World
\bookmark[
gotor={t.pdf},
page=2,
view=FitH 800,% vertical position from bottom in bp
% view=Fit,
]{External file}
\end{document}
texdocto work or you couldn't then getbookmarkto work? Can you provide a minimal working example (MWE) that illustrates your problem? – Joseph Wright May 13 '14 at 17:22