如何添加作者所属机构及其电子邮件地址并全部左对齐

如何添加作者所属机构及其电子邮件地址并全部左对齐

如何添加作者及其所属机构和电子邮件地址并使其全部左对齐?

标题

作者 1,作者 2,作者 3

作者单位

author1 的电子邮件地址

抽象的

我使用的是单列文章文档。标题位于页面中央。

问候

答案1

对于单个应用程序来说,定义适当的\maketitle命令是毫无意义的。

\documentclass[a4paper]{article}

\newcommand{\affilmark}[1]{\rlap{\textsuperscript{\itshape#1}}}
\usepackage{lipsum}

\begin{document}

\vspace*{3ex}
\begin{center}\LARGE
  The title of this paper, long enough to break over two lines
\end{center}
\vspace*{2ex}
\begin{flushleft}\large
A. N. Author\affilmark{a},\quad
B. P. Another\affilmark{b},\quad
C. Q. Third\affilmark{c}\\[2ex]
\normalsize\itshape
\textsuperscript{a,b}\,Department of Cuisine, University of Nowhere\\
\textsuperscript{c}\,Department of Departmentalization, University of Somewhere\\[1ex]
\upshape Corresponding author's email: \texttt{[email protected]}
\end{flushleft}
\vspace*{3ex}

\begin{abstract}
\lipsum[1-2]
\end{abstract}

\section{Introduction}
\lipsum
\end{document}

我也希望将标题向左对齐。

相关内容