JATS template: allow multiple copyright statements, years, holders
This commit is contained in:
parent
0858e5af4f
commit
c694a6e4f5
3 changed files with 21 additions and 16 deletions
|
@ -174,15 +174,15 @@ $if(history)$
|
||||||
$endif$
|
$endif$
|
||||||
$if(copyright)$
|
$if(copyright)$
|
||||||
<permissions>
|
<permissions>
|
||||||
$if(copyright.statement)$
|
$for(copyright.statement)$
|
||||||
<copyright-statement>$copyright.statement$</copyright-statement>
|
<copyright-statement>$copyright.statement$</copyright-statement>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.year)$
|
$for(copyright.year)$
|
||||||
<copyright-year>$copyright.year$</copyright-year>
|
<copyright-year>$copyright.year$</copyright-year>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.holder)$
|
$for(copyright.holder)$
|
||||||
<copyright-holder>$copyright.holder$</copyright-holder>
|
<copyright-holder>$copyright.holder$</copyright-holder>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.text)$
|
$if(copyright.text)$
|
||||||
<license license-type="$copyright.type$" xlink:href="$copyright.link$">
|
<license license-type="$copyright.type$" xlink:href="$copyright.link$">
|
||||||
<license-p>$copyright.text$</license-p>
|
<license-p>$copyright.text$</license-p>
|
||||||
|
|
|
@ -51,15 +51,15 @@ $endfor$
|
||||||
$endif$
|
$endif$
|
||||||
$if(copyright)$
|
$if(copyright)$
|
||||||
<permissions>
|
<permissions>
|
||||||
$if(copyright.statement)$
|
$for(copyright.statement)$
|
||||||
<copyright-statement>$copyright.statement$</copyright-statement>
|
<copyright-statement>$copyright.statement$</copyright-statement>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.year)$
|
$for(copyright.year)$
|
||||||
<copyright-year>$copyright.year$</copyright-year>
|
<copyright-year>$copyright.year$</copyright-year>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.holder)$
|
$for(copyright.holder)$
|
||||||
<copyright-holder>$copyright.holder$</copyright-holder>
|
<copyright-holder>$copyright.holder$</copyright-holder>
|
||||||
$endif$
|
$endfor$
|
||||||
$if(copyright.text)$
|
$if(copyright.text)$
|
||||||
<license license-type="$copyright.type$" xlink:href="$copyright.link$">
|
<license license-type="$copyright.type$" xlink:href="$copyright.link$">
|
||||||
<license-p>$copyright.text$</license-p>
|
<license-p>$copyright.text$</license-p>
|
||||||
|
|
13
doc/jats.md
13
doc/jats.md
|
@ -159,16 +159,21 @@ Metadata Values
|
||||||
together.
|
together.
|
||||||
|
|
||||||
`statement`
|
`statement`
|
||||||
: the year of copyright; used as content of the
|
: copyright notice or statement; used as content of the
|
||||||
[`<copyright-statement>`][elem:copyright-statement]
|
[`<copyright-statement>`][elem:copyright-statement]. Use a
|
||||||
|
list for multiple statements.
|
||||||
|
|
||||||
`year`
|
`year`
|
||||||
: the year of copyright; used as content of the
|
: 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`
|
`holder`
|
||||||
: the copyright holder; included via the
|
: 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`
|
`text`
|
||||||
: inline text setting the license under which the text is
|
: inline text setting the license under which the text is
|
||||||
|
|
Loading…
Add table
Reference in a new issue