diff options
| author | Albert Krewinkel <albert@zeitkraut.de> | 2022-03-31 21:42:45 +0200 |
|---|---|---|
| committer | Albert Krewinkel <albert@zeitkraut.de> | 2022-04-02 15:29:37 +0200 |
| commit | c694a6e4f587128581b3252169591dfcee3652f4 (patch) | |
| tree | 4ea708a0b32d2967d44f11cf994a904fdb1fb23c /data | |
| parent | 0858e5af4ff36a9408d2774f23e04091bae5e9d2 (diff) | |
JATS template: allow multiple copyright statements, years, holders
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/article.jats_publishing | 12 | ||||
| -rw-r--r-- | data/templates/default.jats_articleauthoring | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/data/templates/article.jats_publishing b/data/templates/article.jats_publishing index 47ab8f197..640e88572 100644 --- a/data/templates/article.jats_publishing +++ b/data/templates/article.jats_publishing @@ -174,15 +174,15 @@ $if(history)$ $endif$ $if(copyright)$ <permissions> -$if(copyright.statement)$ +$for(copyright.statement)$ <copyright-statement>$copyright.statement$</copyright-statement> -$endif$ -$if(copyright.year)$ +$endfor$ +$for(copyright.year)$ <copyright-year>$copyright.year$</copyright-year> -$endif$ -$if(copyright.holder)$ +$endfor$ +$for(copyright.holder)$ <copyright-holder>$copyright.holder$</copyright-holder> -$endif$ +$endfor$ $if(copyright.text)$ <license license-type="$copyright.type$" xlink:href="$copyright.link$"> <license-p>$copyright.text$</license-p> diff --git a/data/templates/default.jats_articleauthoring b/data/templates/default.jats_articleauthoring index 01042b001..90d98f2bf 100644 --- a/data/templates/default.jats_articleauthoring +++ b/data/templates/default.jats_articleauthoring @@ -51,15 +51,15 @@ $endfor$ $endif$ $if(copyright)$ <permissions> -$if(copyright.statement)$ +$for(copyright.statement)$ <copyright-statement>$copyright.statement$</copyright-statement> -$endif$ -$if(copyright.year)$ +$endfor$ +$for(copyright.year)$ <copyright-year>$copyright.year$</copyright-year> -$endif$ -$if(copyright.holder)$ +$endfor$ +$for(copyright.holder)$ <copyright-holder>$copyright.holder$</copyright-holder> -$endif$ +$endfor$ $if(copyright.text)$ <license license-type="$copyright.type$" xlink:href="$copyright.link$"> <license-p>$copyright.text$</license-p> |
