答案1
一种可能性是将\maketitle
摘要放在一个小页面中,然后借用这个答案为联盟的风格和这个答案以使小页面正确居中。
\documentclass{article}
\usepackage{kantlipsum}
\makeatletter
\def\and{%
\end{tabular}%
\begin{tabular}[t]{c}}%
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or a\or b\or c\or d\or e\or f\or g\or h\or i\else\@ctrerr\fi}}
\makeatother
\title{My Title}
\author{Luke Skywalker\thanks{Some Affiliation} \and Mara Jade\thanks{Some Other Affiliation}}
\date{}
\begin{document}
\noindent\makebox[\textwidth][c]{%
\begin{minipage}{\textwidth}
\maketitle
\begin{abstract}
\kant[1]
\end{abstract}
\end{minipage}}
\section{Introduction}
\kant[2]
\end{document}