소속에 따른 저작권 분리

소속에 따른 저작권 분리

내 논문을 정확히 이렇게 보이게 만들어야 하는데, 이를 수행하는 구문이 확실하지 않습니다. 확실히 표준 형식은 아닙니다. 이견있는 사람?

여기에 이미지 설명을 입력하세요

답변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}

여기에 이미지 설명을 입력하세요

관련 정보