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