acmart:避免电子邮件地址中出现连字符

acmart:避免电子邮件地址中出现连字符

使用 acmart 包,我有一个作者的电子邮件地址,其域名包含连字符。默认的 acmart 样式会将其分成两行,而且由于它是一封电子邮件(因此会按字面解释所有命令),我无法找到一种修复此问题的方法,除非修改 acmart 本身,而这在我的会议记录中是被禁止的。

这类似于acmart:丑陋的电子邮件地址——如何避免断行?除了域名包含连字符,因此针对该问题提出的解决方案不起作用。

复制者:

\documentclass[sigconf]{acmart}

\begin{document}

\title{Paper Title}

\author{Author 1}
\email{[email protected]}
\affiliation{Affiliation}

\author{Author 2}
\email{[email protected]}
\affiliation{Affiliation}

\author{Author With Long Email 3}
\email{[email protected]}
\affiliation{Affiliation}

\maketitle

\end{document}

好像:

在此处输入图片描述

答案1

好的,我找到了答案。如果您添加选项urlbreakonhyphens=false,acmart 将为您解决这个问题。

\documentclass[sigconf,urlbreakonhyphens=false]{acmart}

(原始复制品的其余部分未经修改。)

相关内容