以下代码可行并在 pdf 文档中生成 mailto 链接。但是,使用 Adobe 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 链接进行编码,以便与 Adobe 更加兼容?
答案1
不要引用你的 URL:
\href{mailto:[email protected]}{Good Link!}