I am new to the community and hope this is the correct place for this post. I've been having some issues formatting the document I'm working on. I'm using the elsarticle class class and I am trying to format the front matter for the document.
The area where I'm encountering an issues is with the declaration of multiple affiliations for 2 of the 3 authors. In the output document these two authors have incorrect tags for their second affiliation. It's a trivial matter, but an important one that I can't figure out. I'm hoping someone on here knows what the issue is.
This is how I setup the document:
Code: Select all
\documentclass[authoryear]{elsarticle}
\begin{document}
\begin{frontmatter}
\title{A Very Clever Paper Title}
\author[add1]{Author1}
\ead{email1@domain.ca}
\author[add2, add3]{Author2\corref{cor1}}
\ead{email2@domain.ca}
\author[add2, add3]{Author3\corref{cor1}}
\ead{email3@domain.ca}
\cortext[cor1]{Please address correspondence to Author2 or Author3}
\address[add1]{Department of Redundancy Department}
\address[add2]{Centre for Study of Things}
\address[add3]{Department of Interests}
A Very Clever Paper Title
Author1(c), Author2(a,1,*), and Author3(a,1,*)
(a) Department of Redundancy Department
(b) Centre for Study of Things
(c) Department of Interests
(*) Please address correspondence to Author1 or Author2
The main issue is that when I try to have multiple affiliations for Authors1 and 2, the second affiliation (add2) shows up as the number 1 in the superscript list instead of 'b'. So the author line should look like this:
Author1c, Author2a,b,*, and Author3a,b,*
Again, it is trivial but for the life of me I can't figure out why this is happening! Any advice would be helpful!