I used the following latex code to include a paper title, author names and addresses and a note at the end of the first page
Code: Select all
\title{The title of my page}
\author{first author$^{1}$\thanks{\mbox{Corresponding author. Tel:~+123456789; fax:~+987654321.}
\mbox{\emph{E-mail~address}:~firstA@abc.com(F. Author).}} ,
second author$^{2}$ and third author$^{1}$\\
\footnotesize
$^{1}$\textit{Address of the first and the third author}\\
\footnotesize
$^{2}$\textit{Address of the second author}}
\maketitle
Code: Select all
*Corresponding author. Tel: +123456789. fax: +987654321.
Email address: firstA@abc.com(F. Author).

I tried to separate the fax and the email in different lines (as below) by putting tel and fax in different \mbox and using "\\" in-between but it rather generates a number of errors.
Code: Select all
*Corresponding author. Tel: +123456789.
fax: +987654321.
Email address: firstA@abc.com(F. Author).
Code: Select all
*Corresponding author. Tel: +123456789.
fax: +987654321.
Email address: firstA@abc.com(F. Author).
Can some one guide me here?
Thanks in advance