JATS template: fix equal-contrib attribute

The standard requires the value to be either `yes` or `no`, but is was
set to `true` for authors who contributed equally.
This commit is contained in:
Albert Krewinkel 2021-11-11 09:38:07 +01:00
parent 4e50706924
commit b116022de4
No known key found for this signature in database
GPG key ID: 388DC0B21F631124

View file

@ -86,7 +86,7 @@ $endif$
$if(author)$
<contrib-group>
$for(author)$
<contrib contrib-type="author"$if(author.equal-contrib)$ equal-contrib="true"$endif$>
<contrib contrib-type="author"$if(author.equal-contrib)$ equal-contrib="yes"$endif$>
$if(author.orcid)$
<contrib-id contrib-id-type="orcid">$author.orcid$</contrib-id>
$endif$
@ -208,4 +208,3 @@ $back$
$endif$
</back>
</article>