f5ea5f0aad
New formats: - `jats_archiving` for the "Archiving and Interchange Tag Set", - `jats_publishing` for the "Journal Publishing Tag Set", and - `jats_articleauthoring` for the "Article Authoring Tag Set." The "jats" output format is now an alias for "jats_archiving". Closes: #6014
90 lines
2.1 KiB
XML
90 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
$if(xml-stylesheet)$
|
|
<?xml-stylesheet type="text/xsl" href="$xml-stylesheet$"?>
|
|
$endif$
|
|
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Article Authoring DTD v1.2 20190208//EN"
|
|
"JATS-articleauthoring1.dtd">
|
|
$if(article.type)$
|
|
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="$article.type$">
|
|
$else$
|
|
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="other">
|
|
$endif$
|
|
<front>
|
|
<article-meta>
|
|
$if(title)$
|
|
<title-group>
|
|
<article-title>$title$</article-title>
|
|
</title-group>
|
|
$endif$
|
|
$if(author)$
|
|
<contrib-group>
|
|
$for(author)$
|
|
<contrib contrib-type="author">
|
|
$if(author.orcid)$
|
|
<contrib-id contrib-id-type="orcid">$author.orcid$</contrib-id>
|
|
$endif$
|
|
$if(author.surname)$
|
|
<name>
|
|
<surname>$author.surname$</surname>
|
|
<given-names>$author.given-names$</given-names>
|
|
</name>
|
|
$else$
|
|
<string-name>$author$</string-name>
|
|
$endif$
|
|
$if(author.email)$
|
|
<email>$author.email$</email>
|
|
$endif$
|
|
$if(author.aff-id)$
|
|
<xref ref-type="aff" rid="aff-$contrib.aff-id$"/>
|
|
$endif$
|
|
$if(author.cor-id)$
|
|
<xref ref-type="corresp" rid="cor-$author.cor-id$"><sup>*</sup></xref>
|
|
$endif$
|
|
</contrib>
|
|
$endfor$
|
|
</contrib-group>
|
|
$endif$
|
|
$if(copyright)$
|
|
<permissions>
|
|
$if(copyright.statement)$
|
|
<copyright-statement>$copyright.statement$</copyright-statement>
|
|
$endif$
|
|
$if(copyright.year)$
|
|
<copyright-year>$copyright.year$</copyright-year>
|
|
$endif$
|
|
$if(copyright.holder)$
|
|
<copyright-holder>$copyright.holder$</copyright-holder>
|
|
$endif$
|
|
$if(copyright.text)$
|
|
<license license-type="$copyright.type$" xlink:href="$copyright.link$">
|
|
<license-p>$copyright.text$</license-p>
|
|
</license>
|
|
$endif$
|
|
</permissions>
|
|
$endif$
|
|
<abstract>
|
|
$abstract$
|
|
</abstract>
|
|
$if(tags)$
|
|
<kwd-group kwd-group-type="author">
|
|
$for(tags)$
|
|
<kwd>$tags$</kwd>
|
|
$endfor$
|
|
</kwd-group>
|
|
$endif$
|
|
$if(article.funding-statement)$
|
|
<funding-group>
|
|
<funding-statement>$article.funding-statement$</funding-statement>
|
|
</funding-group>
|
|
$endif$
|
|
</article-meta>
|
|
</front>
|
|
<body>
|
|
$body$
|
|
</body>
|
|
<back>
|
|
$if(back)$
|
|
$back$
|
|
$endif$
|
|
</back>
|
|
</article>
|