...
Tip | ||
---|---|---|
|
Affiliations
Affiliations is applied to one or more paragraphs that include the institutions or organizations with which an author is affiliated. Author affiliations can be edited as one affiliation per paragraph; alternatively, eXtyles also supports multiple affiliations in a single paragraph. In the "one affiliation per paragraph" style, when superscript letters, numbers, or symbols are used to link affiliations to authors, the linking character must be at the start of the affiliation paragraph. All levels of an organization are listed within a single <aff>
element, which can be placed either inside or following the <contrib-group>
.
...
The following examples of author list and affiliations will parse correctly.
Example 1
Info |
---|
This illustration is an excerpt from the sample document: Sample 1_Math-in-Word.docx |
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<contrib contrib-type="author"> <name> <surname>Gebhard</surname> <given-names>Caitlin</given-names> </name> <xref ref-type="aff" rid="aff1"><sup>1</sup></xref> </contrib> <contrib contrib-type="author"> <name> <surname>Rosenblum</surname> <given-names>Bruce</given-names> </name><xref ref-type="aff" rid="aff2"><sup>2</sup></xref> <xref ref-type="fn" rid="afn1"><sup>*</sup></xref></contrib> <aff id="aff1"> <label>1</label>Customer Success Department, Inera Incorporated, 19 Flett Road, <addr-line><city>Belmont</city>, <state>MA</state> <postal-code>02478</postal-code></addr-line></aff> <aff id="aff2"><label>2</label>Management Department, Inera Incorporated, 19 Flett Road, <addr-line><city>Belmont</city>, <state>MA</state> <postal-code>02478</postal-code></addr-line> </aff> </contrib-group> |
Example 2
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<contrib-group> <contrib contrib-type="author"><name><surname>Mumbo</surname><given-names>Jay U.</given-names></name></contrib> <aff id="aff1">Department of Agriculture, Tufts University, 419 Boston Ave, <addr-line>Medford, MA 02155</addr-line></aff> </contrib-group> <contrib-group> <contrib contrib-type="author"><name><surname>Minute</surname><given-names>Samuel</given-names></name></contrib> <aff id="aff2">Economic and Public Policy Research, University of Massachusetts Amherst, 100 Venture Way, Suite 9, Hadley, MA 01035</aff> </contrib-group> |
...