LaTeX 文章中作者姓名、所属机构和电子邮件的自定义位置

LaTeX 文章中作者姓名、所属机构和电子邮件的自定义位置

我在 LaTeX 文章中寻找作者姓名、所属机构和电子邮件的自定义位置。我希望电子邮件直接显示在所属机构下方,而不是像这样显示在脚注中。

                       My title

   Author A 1,∗ , Author B 1,† , Author C 1,‡ , Author D 2,§ , and Author E 2,¶

         1 Department of Computer Science, L A TEX University
         2 Department of Mechanical Engineering, L A TEX University
         ∗ Corresponding Author: [email protected][email protected][email protected]
         § [email protected][email protected]

任何有关这方面的帮助都将不胜感激。谢谢

\documentclass{article}
\usepackage{authblk}
\usepackage{blindtext}

\begin{document}
\date{}

\title{My title}

\author[1]{Author A\thanks{Corresponding Author: [email protected]}}
\author[1]{Author B\thanks{[email protected]}}
\author[1]{Author C\thanks{[email protected]}}
\author[2]{Author D\thanks{[email protected]}}
\author[2]{Author E\thanks{[email protected]}}
\affil[1]{Department of Computer Science, \LaTeX\ University}
\affil[2]{Department of Mechanical Engineering, \LaTeX\ University}

\maketitle

\begin{abstract}
\blindtext[2]
\end{abstract}

\section{Intro}
\blindtext[10]
\end{document}

答案1

您可以使用下面提到的代码。输出的屏幕截图附在下面。您需要\thanks从作者所属区域删除该部分。这是因为\thanks将电子邮件 ID 放在脚注中。

希望这可以帮助。

在此处输入图片描述

\documentclass{article}
\usepackage{authblk}
\usepackage{blindtext}

\begin{document}
\date{}

\title{My title}

\author[1]{Author A}
\author[1]{Author B}
\author[1]{Author C}
\author[2]{Author D}
\author[2]{Author E}
\affil[1]{Department of Computer Science, \LaTeX\ University}
\affil[2]{Department of Mechanical Engineering, \LaTeX\ University}
\affil[ ]{\textit {\{email1,email2,email3,email4,email5\}@xyz.edu}}
%\eid{[email protected]}

\maketitle

\begin{abstract}
\blindtext[2]
\end{abstract}

\section{Intro}
\blindtext[10]
\end{document}

相关内容