平均能量损失

平均能量损失

如何才能对齐多个作者而不需要使用诸如此类的附加软件包authblck?可以通过修改来实现吗\@author

以下面的工作示例为例:

平均能量损失

\documentclass{report}
\title{My MWE}
\author{This~is~my~Name \and This~is~my~author \and My~other~coauthor \and My~Last coauthor}
\begin{document}
\maketitle
\end{document}

输出是(可以稍微看到错误的对齐,请参见最后一个作者相对于其他作者的对齐):

第一个输出

如果前三个名字中有一个较长,则错误对齐的情况更加明显:

第二个输出

编辑:

重要的提示:解决方案对于制作文档的人来说必须是透明的,我正在创建自己的类,该类的用户仍然会使用类似的东西\author{This~is~my~Name \and This~is~my~author \and My~other~coauthor \and My~Last coauthor}

答案1

tabular您可以在作者宏中放入:

\documentclass{report}
\title{My MWE}
\author{\begin{tabular}{cc}This~is~my~LongName & This~is~my~author\\My~other~coauthor & My~Last coauthor\\\end{tabular}}
\begin{document}
\maketitle
\end{document}

结果:

在此处输入图片描述

答案2

\documentclass{report}

\title{My MWE}
\author{%
  This is my Name\\ 
  My other coauthor 
\and 
  This is my author\\ 
  My Last coauthor}

\begin{document}
\maketitle
\end{document}

相关内容