how we can make a word refer to something like a section or a picture in latex?

263 Views Asked by At

how we can make a word refer to something like a section or a picture in latex? I know how to refer to something by \ref{} but when we use this we see the number of the section or table or picture or ... but I wanna something like \href{}{} to make a word refer to some element like section, table, picture.

2

There are 2 best solutions below

0
samcarter_is_at_topanswers.xyz On BEST ANSWER

You can use an \hyperlink:

\documentclass{article}

\usepackage{hyperref}

\begin{document}


\section{title}
\label{test}

\newpage


\hyperlink{test}{link text}

\end{document}
0
Floyd4K On

You can also use

\hyperref[test]{link text}

which worked for me when \hyperlink did not. Note the square brackets.