summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-09-15 10:36:20 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-09-15 10:36:20 -0700
commit68b6592ae3ac1698d37758d02a6fa743834d2db9 (patch)
treed5a0031cef89ca02744bd2732d63aacc6670f0d9
parent490c564f068b65b79bf94119259cbd78bc43f961 (diff)
downloadpandoc-templates-68b6592ae3ac1698d37758d02a6fa743834d2db9.tar.gz
pandoc-templates-68b6592ae3ac1698d37758d02a6fa743834d2db9.zip
Add missing article.jats_publishing.
-rw-r--r--article.jats_publishing195
1 files changed, 195 insertions, 0 deletions
diff --git a/article.jats_publishing b/article.jats_publishing
new file mode 100644
index 0000000..ce184c0
--- /dev/null
+++ b/article.jats_publishing
@@ -0,0 +1,195 @@
1$if(article.type)$
2<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$">
3$else$
4<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">
5$endif$
6<front>
7<journal-meta>
8$if(journal.publisher-id)$
9<journal-id journal-id-type="publisher-id">$journal.publisher-id$</journal-id>
10$endif$
11$if(journal.nlm-ta)$
12<journal-id journal-id-type="nlm-ta">$journal.nlm-ta$</journal-id>
13$endif$
14$if(journal.pmc)$
15<journal-id journal-id-type="pmc">$journal.pmc$</journal-id>
16$endif$
17<journal-title-group>
18$if(journal.title)$
19<journal-title>$journal.title$</journal-title>
20$endif$
21$if(journal.abbrev-title)$
22<abbrev-journal-title>$journal.abbrev-title$</abbrev-journal-title>
23$endif$
24</journal-title-group>
25$if(journal.pissn)$
26<issn pub-type="ppub">$journal.pissn$</issn>
27$endif$
28$if(journal.eissn)$
29<issn pub-type="epub">$journal.eissn$</issn>
30$endif$
31<publisher>
32<publisher-name>$journal.publisher-name$</publisher-name>
33$if(journal.publisher-loc)$
34<publisher-loc>$journal.publisher-loc$</publisher-loc>
35$endif$
36</publisher>
37</journal-meta>
38<article-meta>
39$if(article.publisher-id)$
40<article-id pub-id-type="publisher-id">$article.publisher-id$</article-id>
41$endif$
42$if(article.doi)$
43<article-id pub-id-type="doi">$article.doi$</article-id>
44$endif$
45$if(article.pmid)$
46<article-id pub-id-type="pmid">$article.pmid$</article-id>
47$endif$
48$if(article.pmcid)$
49<article-id pub-id-type="pmcid">$article.pmcid$</article-id>
50$endif$
51$if(article.art-access-id)$
52<article-id pub-id-type="art-access-id">$article.art-access-id$</article-id>
53$endif$
54$if(article.heading)$
55<article-categories>
56<subj-group subj-group-type="heading">
57<subject>$article.heading$</subject>
58</subj-group>
59$if(article.categories)$
60<subj-group subj-group-type="categories">
61$for(article.categories)$
62<subject>$article.categories$</subject>
63$endfor$
64</subj-group>
65$endif$
66</article-categories>
67$endif$
68$if(title)$
69<title-group>
70<article-title>$title$</article-title>
71</title-group>
72$endif$
73$if(author)$
74<contrib-group>
75$for(author)$
76<contrib contrib-type="author">
77$if(author.orcid)$
78<contrib-id contrib-id-type="orcid">$author.orcid$</contrib-id>
79$endif$
80$if(author.surname)$
81<name>
82<surname>$author.surname$</surname>
83<given-names>$author.given-names$</given-names>
84</name>
85$else$
86<string-name>$author$</string-name>
87$endif$
88$if(author.email)$
89<email>$author.email$</email>
90$endif$
91$if(author.aff-id)$
92<xref ref-type="aff" rid="aff-$contrib.aff-id$"/>
93$endif$
94$if(author.cor-id)$
95<xref ref-type="corresp" rid="cor-$author.cor-id$"><sup>*</sup></xref>
96$endif$
97</contrib>
98$endfor$
99</contrib-group>
100$endif$
101$if(article.author-notes)$
102<author-notes>
103$if(article.author-notes.corresp)$
104$for(article.author-notes.corresp)$
105<corresp id="cor-$article.author-notes.corresp.id$">* E-mail: <email>$article.author-notes.corresp.email$</email></corresp>
106$endfor$
107$endif$
108$if(article.author-notes.conflict)$
109<fn fn-type="conflict"><p>$article.author-notes.conflict$</p></fn>
110$endif$
111$if(article.author-notes.con)$
112<fn fn-type="con"><p>$article.author-notes.con$</p></fn>
113$endif$
114</author-notes>
115$endif$
116$if(date)$
117<pub-date pub-type="epub"$if(date.iso-8601)$ iso-8601-date="$date.iso-8601$"$endif$>
118$if(date.day)$
119<day>$date.day$</day>
120$endif$
121$if(date.month)$
122<month>$date.month$</month>
123$endif$
124<year>$date.year$</year>
125</pub-date>
126$endif$
127$if(article.volume)$
128<volume>$article.volume$</volume>
129$endif$
130$if(article.issue)$
131<issue>$article.issue$</issue>
132$endif$
133$if(article.fpage)$
134<fpage>$article.fpage$</fpage>
135$endif$
136$if(article.lpage)$
137<lpage>$article.lpage$</lpage>
138$endif$
139$if(article.elocation-id)$
140<elocation-id>$article.elocation-id$</elocation-id>
141$endif$
142$if(history)$
143<history>
144</history>
145$endif$
146$if(copyright)$
147<permissions>
148$if(copyright.statement)$
149<copyright-statement>$copyright.statement$</copyright-statement>
150$endif$
151$if(copyright.year)$
152<copyright-year>$copyright.year$</copyright-year>
153$endif$
154$if(copyright.holder)$
155<copyright-holder>$copyright.holder$</copyright-holder>
156$endif$
157$if(copyright.text)$
158<license license-type="$copyright.type$" xlink:href="$copyright.link$">
159<license-p>$copyright.text$</license-p>
160</license>
161$endif$
162</permissions>
163$endif$
164$if(abstract)$
165<abstract>
166$abstract$
167</abstract>
168$endif$
169$if(tags)$
170<kwd-group kwd-group-type="author">
171$for(tags)$
172<kwd>$tags$</kwd>
173$endfor$
174</kwd-group>
175$endif$
176$if(article.funding-statement)$
177<funding-group>
178<funding-statement>$article.funding-statement$</funding-statement>
179</funding-group>
180$endif$
181</article-meta>
182$if(notes)$
183<notes>$notes$</notes>
184$endif$
185</front>
186<body>
187$body$
188</body>
189<back>
190$if(back)$
191$back$
192$endif$
193</back>
194</article>
195