可能重复:
如何正确插入 URL?
我正在写一份文件,其中有一段我引用了网上找到的一个文件http://www.math.uconn.edu/~kconrad/blurbs/grouptheory/groupsp3.pdf
我做了一个脚注
\footnote{http://www.math.uconn.edu/\textasciitilde kconrad/blurbs/grouptheory/groupsp3.pdf}
我必须找到替代方案,~
因为它不会显示在最终文档中。当复制粘贴到网络浏览器时,这种方法很好用,但是是否可以通过单击脚注从 pdf 链接到页面?
PS:如果有更好的解决方案~
,我也会很高兴看到。
答案1
您可以\href
从hyperref
包中使用:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\footnote{\href{http://www.math.uconn.edu/~kconrad/blurbs/grouptheory/groupsp3.pdf}{groups}}
\end{document}
答案2
您可以使用包中的\url
或命令。\href
hyperref
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\footnote{\url{http://www.math.uconn.edu/~kconrad/blurbs/grouptheory/groupsp3.pdf}}
\footnote{\href{http://www.math.uconn.edu/~kconrad/blurbs/grouptheory/groupsp3.pdf}{Text printed}}
\end{document}
\url
\textt
使用样式字体 打印 URL 。\href
打印 URL 后面的文本。请注意,在文章的打印副本上看不到真实的 URL。