Hyperref (href) 未使用“www”的替代项

Hyperref (href) 未使用“www”的替代项

我正在尝试使用hyperrefLatex 中的包来链接特定网站href。问题是使用这样的 URL

\href{https://link.springer.com}{book}

生成一个可点击的链接,尝试跳转至我的本地目录。错误在于单词“ link”,而使用“ www”将尝试将我带到无效的页面(肯定结果)。有没有什么想法可以让此链接正常运行?

答案1

hyperref确实不是更改 URL:

% arara: pdflatex
\pdfobjcompresslevel=0
\documentclass{article}
\usepackage{hyperref}
\begin{document}
  \href{https://link.springer.com/}{book}
\end{document}

PDF 文件包含:

3 0 obj
<<
/Type /Annot
/Border[0 0 1]/H/I/C[0 1 1]
/Rect [147.716 656.239 171.018 665.15]
/Subtype/Link/A<</Type/Action/S/URI/URI(https://link.springer.com/)>>
>>
endobj

顺便说一句,末尾的斜线完成了 URL。

可以看出,URL 不包含www。因此,错误出在其他地方。可能是 PDF 查看器或 Web 浏览器。

相关内容