适合大型电子邮件地址

适合大型电子邮件地址

我有一些作者的电子邮件地址很长。请参阅以下代码:

\documentclass[11pt]{article}
\usepackage[]{ACL2023}    
\usepackage{times}
\usepackage{latexsym}    
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}    
\usepackage{microtype}
\usepackage{listings}    
\usepackage{graphicx}
\usepackage{hyperref}
\newcommand{\comment}[1]{}
\title{PAPER TITLE}

\author{Author 1 \\ Example university \\ [email protected]\And 
         Author 2 \\ Example university \\ [email protected]\And
         Author 3 \\ Example university \\ [email protected]
          \AND
         Author 4 \\ Example university \\ [email protected]\And
         Author 5 \\ Example university  Line two \\ [email protected] \And
         Author 6 \\ Example university  \\ [email protected]
         }

下面的选项展示了我能想到的两种表现方式。然而,我发现它们都不美观。

选项1

选项2

我怎样才能使这些电子邮件地址合适并处于同一行?

答案1

您可以按如下方式重新排列作者:

\author{Author 1 \\ Example university \\ [email protected]\And 
         Author 2 \\ Example university \\ [email protected]\And
         Author 3 \\ Example university \\ [email protected]
          \AND
         Author 4 \\ Example university \\ [email protected]\And
         Author 5 \\ Example university  Line two \\ [email protected]
         \AND
         Author 6 \\ Example university  \\ [email protected]
         }

在这种情况下,应该增加标题区域

\setlength\titlebox{8cm}

在此处输入图片描述

相关内容