Adding more than one author with different affiliation in LaTeX
We can manage more than one author with different affiliation using \authblk package. Here I am giving a simple example and its output. \documentclass{article} \usepackage{authblk} \author[1]{First Author} \author[2]{Second Author} \author[1]{Third Author} \author[2]{Corresponding Author\thanks{email@2nduniversity.com}} \affil[1]{First Department, University1} \affil[2]{Another Department, Another University} \title{Author Affiliation with authblk} \date{} % \begin{document} \maketitle Main Part of your document (including abstract) here. \end{document} And the output will look like Also you can use any other symbol instead of 1,2. You can also add email id for other author also. It will automatically change the symbol accordingly. hope This Will help Source: http://ctan.org/pkg/authblk http://tex.stackexchange.com/questions/9594/adding-more-than-one-author-with-different-affiliation Cheers A.Paul