suppose i have one author, and there is a corresponding affiliation for this author, then i can make this BibTeX entry:
Code: Select all
@article{key,
author={Surname1, FirstName1},
affiliation={affiliation1},
...
}
if i have 2 authors, and each have different affiliations, how do i include both their affiliations in the BibTeX entry? would the following be the correct syntax?
Code: Select all
@article{key,
author={Surname1, FirstName1 and Surname2, FirstName2},
affiliation={affiliation1 and affiliation2},
...
}
beethovengg