ポストスクリプトハイパーリンク URL 自動オープン

ポストスクリプトハイパーリンク 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}

関連情報