Answers for "latex hyperref to link to section"

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
0

put link to section latex

usepackage{hyperref}

%... other code

section{Hello World}
label{sec:hello}

hyperref[sec:hello]{Word of text}
Posted by: Guest on December-06-2021

Browse Popular Code Answers by Language