GeneralHow to get hyperlink to AVI files

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
kaushik619
Posts: 1
Joined: Fri Feb 04, 2011 7:26 pm

How to get hyperlink to AVI files

Post by kaushik619 »

Hi,

Can anyone help me understand how to use /hyperlink and /hypertarget commands to open an avi file I have in the same directory?

If there commands are not useful, is there any other method to do the same?

Its kinda urgent so please get back soon. Thanks. :)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

How to get hyperlink to AVI files

Post by frabjous »

The \hyperlink and \hypertarget commands are for links internal to the file. Use \href:

Code: Select all

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\href{filename.avi}{LINK TEXT}
\end{document}
Or you might prefer to use the movie15 package instead.

Code: Select all

\documentclass{article}
\usepackage{hyperref}
\usepackage{movie15}
\begin{document}
\includemovie{5cm}{3cm}{filename.avi}
\end{document}
As for the "urgent" status of your request, please read this.
Post Reply