diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2021-11-11 09:38:07 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2021-11-11 09:38:07 +0100 |
commit | b116022de46cc3969eb91a0035e8da8f9135cbb4 (patch) | |
tree | 94a7beaccec53e1eacba32d5d9fff22eb8204168 | |
parent | 4e50706924a0337a0f044edea912f14695daa28a (diff) | |
download | pandoc-b116022de46cc3969eb91a0035e8da8f9135cbb4.tar.gz |
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.
-rw-r--r-- | data/templates/article.jats_publishing | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/data/templates/article.jats_publishing b/data/templates/article.jats_publishing index 9bedff6af..7ea53d5b3 100644 --- a/data/templates/article.jats_publishing +++ b/data/templates/article.jats_publishing @@ -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> - |