-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jats_publishing: author affiliation is missing? #6687
Comments
Might be an oversight, but I'm not sure. Could also be because there is no commonly accepted way of specifying this info, or because adding the same affiliation repeatedly would be undesirable. A separate, top-level This is probably a good place to mention a new effort to agree on a method to specify this kind of metadata in YAML headers: https://github.com/jam-schema/jams. @mfenner already pointed us to https://github.com/datacite/bolognese which could be extremely handy in this context. |
It does seem to be a bug/oversight that the affiliation is referenced by id (the The affiliations should be listed separately in An alternative would be to add each author's affiliations in |
I've had a go at this, but it's not particularly easy as the data model isn't really there yet. I think the document needs a list of The \author[1,*]{Alice Author}
\author[2]{Bob Author}
\author[1,2,+]{Christine Author}
\author[2,+]{Derek Author}
\affil[1]{Affiliation, department, city, postcode, country}
\affil[2]{Affiliation, department, city, postcode, country}
\affil[*]{corresponding.author@email.example}
\affil[+]{these authors contributed equally to this work} |
That's what I have in my local template currently. Looks like the easiest solution to me. |
I think I'd like to see the JATS reader normalise the affiliations so that they're all items under an affiliation:
a: Affiliation A
b: Affiliation B
author:
- name: Author 1
affiliation: [a]
- name: Author 2
affiliation: [a, b] That would allow the template used by the JATS writer to choose whether to group the affiliations all together, referenced from each author, or to add the affiliations directly to each author by getting the value from As for author names, affiliations would need to be allowed to be either a string or an object with separate fields for department, institution, etc. |
It seems that the JATS reader populates the
but does not preserve any link between authors and their affiliation. |
Please have a look and comment on #6867. |
@tarleb sorry I merged the PR before seeing from this issue that you wanted comment. |
Sorry for being so late to the party. I'll try to do some testing and come back to this then. |
The author affiliation is missing in the current jats templates. Is that on purpose?
See:
pandoc/data/templates/article.jats_publishing
Line 88 in 34151e8
It currently reads:
Shouldn't that be:
Should I start a PR, or am I missing something?
The text was updated successfully, but these errors were encountered: