Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/jats/pandoc/institution.xml
12923 views
1
$-- wrap affiliation if it has a known institution identifier
2
$if(it.department)$
3
<institution content-type="dept">${it.department}</institution>
4
$endif$
5
<institution-wrap>
6
<institution>${it.name}</institution>
7
$if(it.isni)$
8
<institution-id institution-id-type="ISNI">${it.isni}</institution-id>
9
$endif$
10
$if(it.ringgold)$
11
<institution-id institution-id-type="Ringgold">${it.ringgold}</institution-id>
12
$endif$
13
$if(it.ror)$
14
<institution-id institution-id-type="ROR">${it.ror}</institution-id>
15
$endif$
16
$for(it.pid)$
17
<institution-id institution-id-type="${it.type}">${it.id}</institution-id>
18
$endfor$
19
</institution-wrap>
20