是否可以将 PDF 中的 URL 链接到网页?

是否可以将 PDF 中的 URL 链接到网页?

可能重复:
如何正确插入 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

您可以\hrefhyperref包中使用:

\documentclass{article}
\usepackage{hyperref}

\begin{document}

\footnote{\href{http://www.math.uconn.edu/~kconrad/blurbs/grouptheory/groupsp3.pdf}{groups}}


\end{document}

答案2

您可以使用包中的\url或命令。\hrefhyperref

\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。

相关内容