Answers for "how to hyperlink in latex"

10

url in latex

\usepackage{hyperref}
%Use \href{URL}{DESCRIPTION} to add a link with description.
%Use \url{URL} to add a link without a description.
Posted by: Guest on September-26-2020
3

latex hyper link

%import the package
\usepackage{hyperref}

%Make the text clickable within the compiled doc
\href{link_address}{link_text}

%Examples
\href{https://www.youtube.com/watch?v=uHKfrz65KSU}{Cat video}

Follow the link below to see a cat video: \\
\href{https://www.youtube.com/watch?v=uHKfrz65KSU}{https://www.youtube.com/watch?v=uHKfrz65KSU}
Posted by: Guest on July-01-2021
-1

include link in latex

\documentclass{article} % or any other documentclass

%...

\usepackage{hyperref}

%...

\begin{document}

%...

\end{document}
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language