Estoy intentando agregar un hipervínculo a un PDF modificando el PostScript.
Cualquier posible para abrir este enlace de acción automatizado o abriendo posdata o pdf. Se ejecutará el enlace.
[/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
Respuesta1
Aunque no se recomienda, es posible asociar este tipo de acción (" /S/URI
") con el evento de apertura de página de una página PDF para que se ejecute automáticamente.
Sin embargo, es posible que no todos los visores de PDF lo admitan. Probado con Acrobat Reader. Componer con 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}