Anonymous 8536
I have a document
```
\documentclass[12pt,a4paper]{book}
\usepackage{hyperref}
\begin{document}
\url{https://topanswers.xyz/question?community=tex}
\end{document}
```
Instead using ``\url{https://topanswers.xyz/question?community=tex}``
How can I use short work, e.g, here after compile?
Top Answer
samcarter
You can use `\href{<URL>}{<text>}`:
```
\documentclass{book}
\usepackage{hyperref}
\begin{document}
\href{https://topanswers.xyz/question?community=tex}{here}
\end{document}
```