diff options
Diffstat (limited to 'default.jats_articleauthoring')
-rw-r--r-- | default.jats_articleauthoring | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/default.jats_articleauthoring b/default.jats_articleauthoring new file mode 100644 index 0000000..f86bb2d --- /dev/null +++ b/default.jats_articleauthoring | |||
@@ -0,0 +1,90 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | $if(xml-stylesheet)$ | ||
3 | <?xml-stylesheet type="text/xsl" href="$xml-stylesheet$"?> | ||
4 | $endif$ | ||
5 | <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Article Authoring DTD v1.2 20190208//EN" | ||
6 | "JATS-articleauthoring1.dtd"> | ||
7 | $if(article.type)$ | ||
8 | <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$"> | ||
9 | $else$ | ||
10 | <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"> | ||
11 | $endif$ | ||
12 | <front> | ||
13 | <article-meta> | ||
14 | $if(title)$ | ||
15 | <title-group> | ||
16 | <article-title>$title$</article-title> | ||
17 | </title-group> | ||
18 | $endif$ | ||
19 | $if(author)$ | ||
20 | <contrib-group> | ||
21 | $for(author)$ | ||
22 | <contrib contrib-type="author"> | ||
23 | $if(author.orcid)$ | ||
24 | <contrib-id contrib-id-type="orcid">$author.orcid$</contrib-id> | ||
25 | $endif$ | ||
26 | $if(author.surname)$ | ||
27 | <name> | ||
28 | <surname>$author.surname$</surname> | ||
29 | <given-names>$author.given-names$</given-names> | ||
30 | </name> | ||
31 | $else$ | ||
32 | <string-name>$author$</string-name> | ||
33 | $endif$ | ||
34 | $if(author.email)$ | ||
35 | <email>$author.email$</email> | ||
36 | $endif$ | ||
37 | $if(author.aff-id)$ | ||
38 | <xref ref-type="aff" rid="aff-$contrib.aff-id$"/> | ||
39 | $endif$ | ||
40 | $if(author.cor-id)$ | ||
41 | <xref ref-type="corresp" rid="cor-$author.cor-id$"><sup>*</sup></xref> | ||
42 | $endif$ | ||
43 | </contrib> | ||
44 | $endfor$ | ||
45 | </contrib-group> | ||
46 | $endif$ | ||
47 | $if(copyright)$ | ||
48 | <permissions> | ||
49 | $if(copyright.statement)$ | ||
50 | <copyright-statement>$copyright.statement$</copyright-statement> | ||
51 | $endif$ | ||
52 | $if(copyright.year)$ | ||
53 | <copyright-year>$copyright.year$</copyright-year> | ||
54 | $endif$ | ||
55 | $if(copyright.holder)$ | ||
56 | <copyright-holder>$copyright.holder$</copyright-holder> | ||
57 | $endif$ | ||
58 | $if(copyright.text)$ | ||
59 | <license license-type="$copyright.type$" xlink:href="$copyright.link$"> | ||
60 | <license-p>$copyright.text$</license-p> | ||
61 | </license> | ||
62 | $endif$ | ||
63 | </permissions> | ||
64 | $endif$ | ||
65 | <abstract> | ||
66 | $abstract$ | ||
67 | </abstract> | ||
68 | $if(tags)$ | ||
69 | <kwd-group kwd-group-type="author"> | ||
70 | $for(tags)$ | ||
71 | <kwd>$tags$</kwd> | ||
72 | $endfor$ | ||
73 | </kwd-group> | ||
74 | $endif$ | ||
75 | $if(article.funding-statement)$ | ||
76 | <funding-group> | ||
77 | <funding-statement>$article.funding-statement$</funding-statement> | ||
78 | </funding-group> | ||
79 | $endif$ | ||
80 | </article-meta> | ||
81 | </front> | ||
82 | <body> | ||
83 | $body$ | ||
84 | </body> | ||
85 | <back> | ||
86 | $if(back)$ | ||
87 | $back$ | ||
88 | $endif$ | ||
89 | </back> | ||
90 | </article> | ||