我已经知道,\usepackage{url}
然后使用\url{}
命令将允许我插入没有超链接的 URL,但是,我甚至没有使用这个包,而是使用了命令\url{}
,它为 URL 提供了超链接,如果我添加\usepackage{url}
,它仍然会添加超链接。以下是我已在文档中使用的包列表:
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage[scaled=.92]{helvet}
\usepackage{graphicx}
\usepackage{balance}
\usepackage{booktabs}
\usepackage{ccicons}
\usepackage{ragged2e}
\usepackage[flushleft]{threeparttable}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{listings}
\makeatletter
\makeatother
\usepackage{lmodern}
答案1
该问题带有标记hyperref
,则为不带链接\nolinkurl
的对应部分。\url
如果hyperref
未使用,则该链接可能是由 PDF 查看器创建的,它使用启发式方法来检测文本中的链接。
答案2
不太清楚您想要实现什么,但您可以简单地以纯文本形式输入这些链接(同时转义需要转义的字符)。请注意,这可能会产生低于标准的结果:
\documentclass{article}
\usepackage[colorlinks=true, urlcolor=black]{hyperref}
\begin{document}
The following text is a link but is not clickable: http://myexample.com \par
Some links need to be altered by hand: https://en.wikibooks.org/wiki/LaTeX/Hyperlinks\#Hyperlink\_and\_Hypertarget \par
Text: http://myexample.com/index.php?a=1\&b=1\_p \par
\verb|href|: \href{http://myexample.com/index.php?a=1&b=1_p}{http://myexample.com/index.php?a=1\&b=1\_p}
\end{document}
如果您根本不希望这些链接处于活动状态,请使用包[draft]
的选项hyperref
,如这个优秀的答案。