按隶属关系区分作者

按隶属关系区分作者

我需要让我的论文看起来完全像这样,但我不确定如何用语法来实现。这肯定不是标准格式。有什么想法吗?

在此处输入图片描述

答案1

authblk

\documentclass{article}
\usepackage{newtxtext}               %% for roman text
\usepackage[blocks]{authblk}         % The option is for block layout
\renewcommand\Authfont{\footnotesize}
\renewcommand\Affilfont{\footnotesize}
\setlength{\affilsep}{0.1em}

\title{Title}

\author{First author\thanks{Job here}\,\,}
\author{Second author\thanks{Job there} }
\affil{Department 1 \\
School 1 \\
}

\author{Third author\thanks{Job elsehere} }
\affil{Department 2 \\
School 2 \\
}

\author{and\\[1em]Fourth author\thanks{Job here} }
\affil{Department 3 \\
School 3 \\
}

\date{}

%% needed as you want numbers, otherwise \maketitle uses symbols
\makeatletter
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or 1\or 2\or 3\or
   4\or 5\or 6\or 7\or 8
   \or 9 \else 10\fi}}
\makeatother


\begin{document}
\maketitle

\end{document}

在此处输入图片描述

相关内容