I am using package authblk in the
article
class. I need to change the "*,a" with "a,*" after the first Author Name. How can I do that?
Code: Select all
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{authblk}
\title {\bf Title}
\author[,a]{Author Name\thanks{Corresponding author. Tel.: +0 (000) 000 0000 ext. 00000; fax: +0 (000) 000 0000.\\ E-mail: email@123.com}}
\author[b]{Author Name}
\affil[a]{Department of , University of , Address, BB, CC}
\affil[b]{Department of , University of , Address, BB, CC}
\date{\today}
\begin {document}
\maketitle
\end{document}
Thank you.