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 | |
| parent | 0858e5af4ff36a9408d2774f23e04091bae5e9d2 (diff) | |
JATS template: allow multiple copyright statements, years, holders
| -rw-r--r-- | data/templates/article.jats_publishing | 12 | ||||
| -rw-r--r-- | data/templates/default.jats_articleauthoring | 12 | ||||
| -rw-r--r-- | doc/jats.md | 13 |
3 files changed, 21 insertions, 16 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> diff --git a/doc/jats.md b/doc/jats.md index d63327182..9e9ab10fb 100644 --- a/doc/jats.md +++ b/doc/jats.md @@ -159,16 +159,21 @@ Metadata Values together. `statement` - : the year of copyright; used as content of the - [`<copyright-statement>`][elem:copyright-statement] + : copyright notice or statement; used as content of the + [`<copyright-statement>`][elem:copyright-statement]. Use a + list for multiple statements. `year` : the year of copyright; used as content of the - [`<copyright-year>`][elem:copyright-year] + [`<copyright-year>`][elem:copyright-year]. Use a list to + for multiple copyright years. The JATS documentation + states that this field need not to be used if the year is + included in the copyright statement. `holder` : the copyright holder; included via the - [`<copyright-holder>`][elem:copyright-holder] element. + [`<copyright-holder>`][elem:copyright-holder] element. Use + a list for multiple copyright holders. `text` : inline text setting the license under which the text is |
