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 進行測試。用latex, dvips,排版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}

相關內容