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$
|
||||
$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>
|
||||
|
|
|
@ -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>
|
||||
|
|
13
doc/jats.md
13
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
|
||||
|
|
Loading…
Reference in a new issue