多位作者电子邮件问题

多位作者电子邮件问题

我的论文中有多个作者的电子邮件,它们使用同一个域名,我需要将下面的行分成两行,因为它太长了,有什么帮助吗?

\documentclass{llncs}

\begin{document}
\title{any title}
\author{John kamdreen,John kamdreen,John kamdreen,John kamdreen,%
  John kamdreen,John kamdreen,John kamdreen}
\institute{Center John kamdreen John kamdreen Research\\
  $\left\{John.kamdreen,John.kamdreen,John.kamdreen,John.kamdreen,%
  John.kamdreen,Jo‌​hn.kamdreen,John.kamdreen\right\}[email protected]}
\maketitle
\end{document} 

文档类可用来自出版商

答案1

正如 @JosephWright 在他的回答中指出的那样,如果您想要的只是括号(IE{}),则无需使用\left\right。但是,如果您想要 的行为,delimiters则:

当使用delimiters(IE,你\left\{\right\}不能在其中放置换行符。解决此问题的一种方法是将文本嵌入varwidth环境内的分隔符之间。 (minipage也可以,但varwidth会自动将环境的宽度设置为内容的宽度,IE,将宽度设置为12cm仍然只会将varwidth环境的宽度设置为最长行的宽度,“John.kamdreen,John.kamdreen,John.kamdreen,John.kamdreen”;参见varwidth文档

如果将这样的环境放在里面delimiters,那么您可以在该环境里面使用手动换行符:

\documentclass{llncs}

\usepackage{varwidth}

\title{any title}
\author{John kamdreen,John kamdreen,John kamdreen,John kamdreen,John kamdreen,John kamdreen,John kamdreen}
\institute{Center John kamdreen John kamdreen Research\\ $\left\{\begin{varwidth}{12cm}\centering John.kamdreen,John.kamdreen,John.kamdreen,\\John.kamdreen,John.kamdreen,John.kamdreen,John.kamdreen\end{varwidth}\right\}[email protected]} 

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

请注意,我已将\centering第一行电子邮件地址添加到中心。如果您愿意,可以将其删除。

答案2

如果只需要在材料周围加括号,则不需要数学模式:

\documentclass{llncs}

\begin{document}
\title{any title}
\author{John kamdreen,John kamdreen,John kamdreen,John kamdreen,%
  John kamdreen,John kamdreen,John kamdreen}
\institute{Center John kamdreen John kamdreen Research\\
  \{John.kamdreen,John.kamdreen,John.kamdreen,John.kamdreen,%
  John.kamdreen,\\ Jo‌​hn.kamdreen,John.kamdreen\}@dalton.edu.au}
\maketitle
\end{document} 

请注意,由于电子邮件地址之间没有空格,我手动添加了换行符。

相关内容