diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-02-13 05:36:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 20:36:02 -0800 |
commit | f5ea5f0aad1d5000b326ce4c45c92fdfb1a4b5d3 (patch) | |
tree | 5f309df515abe99fc97c4bab645387d63a5d57f3 /data/templates/default.jats_articleauthoring | |
parent | e9cb08e74cc234b743dfb720d1e25b6777a8724d (diff) | |
download | pandoc-f5ea5f0aad1d5000b326ce4c45c92fdfb1a4b5d3.tar.gz |
Introduce new format variants for JATS (#6067)
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
Diffstat (limited to 'data/templates/default.jats_articleauthoring')
-rw-r--r-- | data/templates/default.jats_articleauthoring | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/data/templates/default.jats_articleauthoring b/data/templates/default.jats_articleauthoring new file mode 100644 index 000000000..f86bb2d3b --- /dev/null +++ b/data/templates/default.jats_articleauthoring @@ -0,0 +1,90 @@ +<?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> |