\href[page=10,pdfremotestartview=FitV] 似乎不起作用

\href[page=10,pdfremotestartview=FitV] 似乎不起作用

我正在尝试使我正在编写的 pdf 文件(使用 LaTeX 等)具有一个可运行的超文本链接,该链接将打开网络上的远程 pdf 文件(理想情况下是在我用来阅读我正在编写的文件的同一个 PDF 查看器中,尽管我不认为这有可能,是吗?),然后导航到某个页面,同时将该页面的高度调整到查看窗口。

这是我的 MWE:

\documentclass[12pt]{article}
\usepackage{geometry} 
\geometry{letterpaper}  
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage[colorlinks=true,urlcolor=cyan]{hyperref}

\title{Brief Article}
\author{The Author}

\begin{document}
\maketitle


I want this \href[page=10,pdfremotestartview=FitV]{http://www.ctex.org/
documents/packages/layout/geometry.pdf}{link} to take me to page 10 of the 
linked PDF file while fitting the height of the page to the window. And while 
it does switch to my web browser which then downloads the PDF file and opens 
that file (using the browser plugin) in a browser window, the browser/plugin 
does not navigate to page 10 or fit the vertical height of the page to the 
window.

\end{document}

正如我在 MWE 中所写,它部分起作用,但不是全部起作用。

我在这里做错什么了吗?

我发现,但我认为它比我面临的问题要复杂得多,虽然它对我有帮助,但并没有完全解决我现在遇到的问题。

有什么建议么?

答案1

这些参数\href仅为“远程转到操作”(/GoToR)定义,文件系统上的 PDF 文件,而不是 URL。

如果是 URL,则可以按以下方式提供参数:

\documentclass[12pt]{article}
\usepackage[colorlinks]{hyperref}

\begin{document}
\href{http://mirror.ctan.org/macros/latex/contrib/geometry/geometry.pdf#page=10&view=FitV}{link}
\end{document}

但是这些设置是否有效以及如何有效取决于浏览器和 PDF 插件。

这些参数在 Adob​​e 的“PDF 打开参数“。

相关内容