When I use the amsart class and run LaTeX => PDF, the email macro produces strange output. Namely, the PDF shows an incomplete mailto. For example:
\documentclass{amsart}
\email{a.b@c.d}
\email{b@c.d}
\begin{document}
\end{document}
In the output, the first link points to b@c.d and the second to @c.d. Interestingly, when I run LaTeX => PS => PDF, both links are correct. How do I fix this?
This question is similar to email adress renders incomplete mailto in PDF. However, unlike in that case, I want to use the \email macro, or at least to simulate the behavior of \email in the amsart class (e.g., I want e-mail addresses to appear at the end of the article, etc.).
Document Class: amsart 2009/07/02 v2.20.1. What is yours? – May 09 '12 at 16:25\usepackage{hyperref}and then\email{\href{mailto:a.b@c.d}{a.b@.c.d}}, themailto:links are created. What precisely are you trying to achieve? – egreg May 09 '12 at 18:00