[Tex/LaTex] How to make url in footnote clickable

footnotesparagraphsurls

How to make url in footnote clickable?

Currently I have:

\paragraph{Some text \protect\footnote{xyz available at \protect\url{https://someplace.org}}}

The footnote appears just fine but nothing happens when I click the url.

Best Answer

Use the package hyperref and call the url by \url{https://someplace.org}

\documentclass{report}

\usepackage{hyperref}

\begin{document}

The paragraph.\footnote{has a footnote with and url \url{https://someplace.org}.}

\end{document}