如何才能对齐多个作者而不需要使用诸如此类的附加软件包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
答案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}