General ⇒ affiliation with two indices
affiliation with two indices
Hi, I have the situation where many authors belong to the same institute/company but within different divisions/departments, is there a way to achieve the following (for two authors, for example):
First Name ^{1,2}, Second Name ^{1,3}
^{1} Department One ^{2} (Two ^{3}), Institute bla bla.
So basically I want to add more indices in the main affiliation of the authors that refers to them specifically. It is important to save space by not repeating the affiliation specifying the department of each author in a new line of text.
First Name ^{1,2}, Second Name ^{1,3}
^{1} Department One ^{2} (Two ^{3}), Institute bla bla.
So basically I want to add more indices in the main affiliation of the authors that refers to them specifically. It is important to save space by not repeating the affiliation specifying the department of each author in a new line of text.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: affiliation with two indices
Can you show us a minimal working example so we can reproduce how you are currently setting up that author block?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
affiliation with two indices
Thanks for your prompt reply. To be very specific and minimal, this is the what I'm trying to compile:
This uses the APS documentclass. I want to produce the affiliation in a single line with indices referring to the authors. This will save a huge space as all the authors belong to the same institute. I know it's silly, but the specific department must be indicated. Is this clear enough?
Code: Select all
Code, edit and compile here:
\documentclass[superscriptaddress]{revtex4}\begin{document}\author{First Name}\affiliation{First Department, Same Institute}\author{Second Name}\affiliation{Second Department, Same Institute}\maketitle\end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: affiliation with two indices
Why are you using the aps class? Seems a strange reason for me, especially since making changes to the predefined output is much harder when a template is used.
How about using a standard class?
How about using a standard class?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: affiliation with two indices
You are right, it's not strictly required to use the APS documentclass. But do you believe that it is possible to achieve what I want using the article documentclass? Thanks for taking the time to help.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
affiliation with two indices
No matter if you are using APS or the generic article, you don't have to use
What would you need from the APS template within article, or ... how should the header look like? Just the linebreaks removed? Do you need this more than once (i.e. a macro) or is it enough to do it completely by hand without any automation.
If the institution is always the same, can it be hardcoded? Is it useful to add the very same marker for every every name instead of just using something like a subtitle to place this information.
\maketitle
to generate the actual titlehead. You can do it completely by hand, though this is a tiny bit more complicated.What would you need from the APS template within article, or ... how should the header look like? Just the linebreaks removed? Do you need this more than once (i.e. a macro) or is it enough to do it completely by hand without any automation.
If the institution is always the same, can it be hardcoded? Is it useful to add the very same marker for every every name instead of just using something like a subtitle to place this information.
Code: Select all
Properties of our new and georgous materialInstitute of nano-stuffJames^1, Mary^2, Gunther^7^1 dep. of materials testing; ^2 dep. of nano-scale simulations; ^3 dep. of ultra-testing, Iceland
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: affiliation with two indices
Thanks for your help, I will follow your advice!