Search code examples
pdflatexpdflatexbeamer

Link to external application in LaTeX Beamer


Is there a way to link to an external application (so that it starts) when clicking on a link in a PDF file, e.g. in a beamer class LaTeX file?


Solution

  • I usually use the movie command of the multimedia package to open any video, audio, image file in an external viewer. But no, it will not open programs.

    \frame{    
    \movie[externalviewer]{Audio Title}{audio.wav}
    \movie[externalviewer]{Video Title}{video.mp4}
    \movie[externalviewer]{Image Title}{image.jpg}
    \movie[externalviewer]{PDF Title}{doc.pdf}
    \movie[externalviewer]{Gedit}{/usr/bin/gedit} % does not work
    }