有可能做到吗?有没有什么软件包可以做到这一点?任何帮助我都非常感谢。
答案1
您没有提供任何详细信息,但您可以\\
在作者字段中简单地使用:
\documentclass[11pt]{article}
\author{
Your Name \\
Second Name
}
\title{The example}
\begin{document}
\maketitle
\end{document}
如果您想要更多的垂直空间,可以像这样增加它:
\documentclass[11pt]{article}
\author{
Your Name \\[6pt]
Second Name
}
\title{The example}
\begin{document}
\maketitle
\end{document}