JATS template: include particles, prefix, suffix in names
This commit is contained in:
parent
c1105e6b06
commit
843eeae13d
2 changed files with 16 additions and 4 deletions
|
@ -95,8 +95,14 @@ $if(author.orcid)$
|
|||
$endif$
|
||||
$if(author.surname)$
|
||||
<name>
|
||||
<surname>$author.surname$</surname>
|
||||
<given-names>$author.given-names$</given-names>
|
||||
<surname>$if(author.non-dropping-particle)$${author.non-dropping-particle} $endif$$author.surname$</surname>
|
||||
<given-names>$author.given-names$$if(author.dropping-particle)$ ${author.dropping-particle}$endif$</given-names>
|
||||
$if(author.prefix)$
|
||||
<prefix>${author.suffix}</prefix>
|
||||
$endif$
|
||||
$if(author.suffix)$
|
||||
<suffix>${author.suffix}</suffix>
|
||||
$endif$
|
||||
</name>
|
||||
$elseif(author.name)$
|
||||
<string-name>$author.name$</string-name>
|
||||
|
|
|
@ -28,8 +28,14 @@ $if(author.orcid)$
|
|||
$endif$
|
||||
$if(author.surname)$
|
||||
<name>
|
||||
<surname>$author.surname$</surname>
|
||||
<given-names>$author.given-names$</given-names>
|
||||
<surname>$if(author.non-dropping-particle)$${author.non-dropping-particle} $endif$${author.surname}</surname>
|
||||
<given-names>${author.given-names}$if(author.dropping-particle)$ ${author.dropping-particle}$endif$</given-names>
|
||||
$if(author.prefix)$
|
||||
<prefix>${author.suffix}</prefix>
|
||||
$endif$
|
||||
$if(author.suffix)$
|
||||
<suffix>${author.suffix}</suffix>
|
||||
$endif$
|
||||
</name>
|
||||
$elseif(author.name)$
|
||||
<string-name>$author.name$</string-name>
|
||||
|
|
Loading…
Reference in a new issue