如何在 acmart sigconf 电子邮件地址中包含括号?

如何在 acmart sigconf 电子邮件地址中包含括号?

我们在一篇论文中有很多电子邮件地址,想用括号缩写它们。最小工作示例:

\documentclass[sigconf]{acmart}

\begin{document}

\title{A paper}
\author{Tom, Dick, Harry}
\email{ \{ tom, dick, harry \} @gmail.com}

\maketitle

\end{document}

但是,括号显示不正确:

enter image description here

我想简洁地说{tom, dick, harry}@gmail.com

问题:如何在 acmart sigconf 电子邮件地址中包含括号?

我尝试使用数学模式来处理括号,使用\protect,以及使用\textbraceleft\textbraceright,但这些只会增加额外的问题。

答案1

enter image description here

在宏中将括号输入为{and }(而不是\{and \}) :\email

\documentclass[sigconf]{acmart}

\begin{document}

\title{a paper}
\author{tom, dick, harry}
\email{{tom, dick, harry}@gmail.com}

\maketitle

\end{document}

相关内容