如何制作此文章模板?

如何制作此文章模板?

我想用一个方框将作者的地址分开,然后根据下面的图形模板将摘要放在这个方框中。右对齐很重要。

enter image description here

答案1

一种可能性是将\maketitle摘要放在一个小页面中,然后借用这个答案为联盟的风格和这个答案以使小页面正确居中。 enter image description here

\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}

相关内容