Custom positions of author names, affiliations and emails in LaTeX article

40,604

You can use the below mentioned code. The screen shot of the output is attached below. You need to remove the \thanks part from the author affiliation area. This is because \thanks places the e-mail id in the footnote.

Hope this helps.

enter image description here

\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}
Share:
40,604

Related videos on Youtube

MYaseen208
Author by

MYaseen208

Updated on August 01, 2022

Comments

  • MYaseen208
    MYaseen208 over 1 year

    I'm looking for custom positions of author names, affiliations and emails in LaTeX article. I want to have email immediately below the affiliations rather than in the footnote like this.

                           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]
    

    Any help in this regard will be highly appreciated. Thanks

    \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}
    
    • M S
      M S over 7 years
      check the answer mentioned below...@MYaseen208