Adobe Acrobat 将 pdfLaTeX hyperref mailto 链接误解为相对路径

Adobe Acrobat 将 pdfLaTeX hyperref mailto 链接误解为相对路径

以下代码可行并在 pdf 文档中生成 mailto 链接。但是,使用 Adob​​e Acrobat 打开时,链接变为。file:///path/to/document/%22mailto:[email protected]%22

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\href{"mailto:[email protected]"}{Broken Link!}
\end{document}

有没有办法在 LaTeX 中对 mailto 链接进行编码,以便与 Adob​​e 更加兼容?

答案1

不要引用你的 URL:

\href{mailto:[email protected]}{Good Link!}

相关内容