我对 有疑问\href
。我用 定义了一个电子邮件地址,但是当我使用并单击 PDF 中的链接时,Outlook 中显示的电子邮件地址是错误的,并且有一些额外的代码。\newcommand{\Authoremail}{[email protected]}
\href{mailto:\Authoremail}{\Authoremail}
答案1
mailto:
缺少电子邮件 URI 的前缀:
\documentclass{article}
\usepackage{hyperref}
\newcommand*{\Authoremail}{[email protected]}
\begin{document}
\href{mailto:\Authoremail}{\Authoremail}
or
\href{mailto:\Authoremail}{\nolinkurl{\Authoremail}}
\end{document}