xxxxxxxxxx
%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}
First import the package `hyperref`
xxxxxxxxxx
\usepackage{hyperref}
Create a link inside your text :
xxxxxxxxxx
\href{link_address}{link_text}
xxxxxxxxxx
\documentclass{book}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
pdftitle={Overleaf Example},
pdfpagemode=FullScreen,
}
\urlstyle{same}