如何在书籍标题页中对齐作者?

如何在书籍标题页中对齐作者?

\author我在一份文件中有以下声明book

\author{
    Lorem Ipsum \and
    Dolor Sit \and
    Amet Whatever \and
    Bozo Clown \and
    Donald Trump \and
    John Smith \and
    Jack Kerouac
}

标题页的结果看起来明显未对齐: enter image description here

我希望左列中的名称左对齐;右列中的名称右对齐;中间列中的名称居中对齐。我应该怎么做?

答案1

一个快速而肮脏的解决方案,无需重新定义\maketitle,也不考虑如果您尝试重复使用,文档其他部分可能产生的副作用\@author

mwe

\documentclass{books}
\usepackage{tabulary}
\title{}
\author{\tabcolsep1em
\begin{tabulary}{\linewidth}{LCR}
    Lorem~Ipsum  Bozo~Clown &
    Dolor~Sit Donald~Trump  Jack~Kerouac &
    Amet~Whatever John~Smith
\end{tabulary}}
\begin{document}
\maketitle
\end{document}

相关内容