[Tex/LaTex] Multiple Authors with common affiliations in IEEEtran conference template

affiliationieeetrantitles

I have a paper where I have 4 different authors with a common affiliation. I would like to mention there names and then a single affiliation followed by individual mail addresses. I have included the code I have and the format snapshot I would like to have. I am using TexStudio and am new to LaTeX. Please help me and tell me the correct use of \author for this.

\documentclass[conference]{IEEEtran}
\begin{document}

\title{CNFET-Based 0.1 V to 0.6 V DC/DC Converter}


% author names and affiliations
% use a multiple column layout for up to three different
% affiliations
\author{\IEEEauthorblockN{Aditya Tyagi}
\IEEEauthorblockA{School of Electrical and\\Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250\\
Email: http://www.michaelshell.org/contact.html}
\and
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA\\
Email: homer@thesimpsons.com}
\and
\IEEEauthorblockN{James Kirk\\ and Montgomery Scott}
\IEEEauthorblockA{Starfleet Academy\\
San Francisco, California 96678-2391\\
Telephone: (800) 555--1212\\
Fax: (888) 555--1212}}
\end{document}

This is how I would like to have it.

Best Answer

I suggest you use the "long form" suggestion in the documentation, combing this with \IEEEauthorrefmark to attach footnote symbols to tie the pieces of information together:

Sample output

\documentclass[conference]{IEEEtran}

\begin{document}
\title{An Important Conference Contribution}

\author{\IEEEauthorblockN{Author One\IEEEauthorrefmark{1},
Author Two\IEEEauthorrefmark{2}, Author Three\IEEEauthorrefmark{3} and
Author Four\IEEEauthorrefmark{4}}
\IEEEauthorblockA{Department of Whatever,
Whichever University\\
Wherever\\
Email: \IEEEauthorrefmark{1}author.one@add.on.net,
\IEEEauthorrefmark{2}author.two@add.on.net,
\IEEEauthorrefmark{3}author.three@add.on.net,
\IEEEauthorrefmark{4}author.four@add.on.net}}
\maketitle

\end{document}