答案1
尽可能简单:
与\url
(来自hyperref
):
\documentclass{article}
\usepackage[hidelinks]{hyperref}
\begin{document}
Some random text taken from Wikipedia\footnote{\url{https://www.wikipedia.org/}}
\end{document}
没有\url
:
\documentclass{article}
\begin{document}
Some random text taken from Wikipedia\footnote{https://www.wikipedia.org/}
\end{document}