add tag
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}
```

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.