postscript 超链接 url 自动打开

postscript 超链接 url 自动打开

我正在尝试通过修改 PostScript 来向 PDF 添加超链接。

任何可能自动打开此操作链接或打开 postscript 或 pdf 的方法。它将执行该链接。

[/Rect [ 0 425 295 445 ]
 /Action << /Subtype /URI /URI (http://www.adobe.com/) >>
/Border [ 0 0 2 ]
/Color [ .7 0 0 ]
/Subtype /Link
ANN pdfmark

答案1

虽然不建议这样做,但可以将此类操作(“ /S/URI”)与 PDF 页面的页面打开事件关联起来,以便自动执行。

但是,并非所有 PDF 查看器都支持它。使用 Acrobat Reader 测试。使用latexdvips、排版ps2pdf

\documentclass{article}

\begin{document}
Note: Opening the next page of this document will take you to an external web page.

\newpage
Page with \texttt{URI} action on page-open event. This may not work in viewers other than Acrobat Reader.
\special{ps: mark {ThisPage} <</AA <</O <</S/URI/URI (http://www.adobe.com/)>> >> >> /PUT pdfmark}
\end{document}

相关内容