@manuscripts/transform 4.3.53 → 4.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/dist/cjs/jats/__tests__/jats-roundtrip.test.js +3 -3
  2. package/dist/cjs/jats/exporter/jats-exporter.js +3 -0
  3. package/dist/cjs/jats/importer/jats-dom-parser.js +41 -1
  4. package/dist/cjs/schema/index.js +9 -0
  5. package/dist/cjs/schema/nodes/headshot_element.js +38 -0
  6. package/dist/cjs/schema/nodes/headshot_grid.js +37 -0
  7. package/dist/cjs/schema/nodes/headshot_image.js +51 -0
  8. package/dist/cjs/transformer/node-names.js +2 -0
  9. package/dist/cjs/transformer/node-title.js +6 -0
  10. package/dist/cjs/version.js +1 -1
  11. package/dist/es/jats/__tests__/jats-roundtrip.test.js +3 -3
  12. package/dist/es/jats/exporter/jats-exporter.js +3 -0
  13. package/dist/es/jats/importer/jats-dom-parser.js +41 -1
  14. package/dist/es/schema/index.js +9 -0
  15. package/dist/es/schema/nodes/headshot_element.js +34 -0
  16. package/dist/es/schema/nodes/headshot_grid.js +33 -0
  17. package/dist/es/schema/nodes/headshot_image.js +48 -0
  18. package/dist/es/transformer/node-names.js +2 -0
  19. package/dist/es/transformer/node-title.js +6 -0
  20. package/dist/es/version.js +1 -1
  21. package/dist/types/jats/__tests__/utils.d.ts +1 -1
  22. package/dist/types/schema/index.d.ts +3 -0
  23. package/dist/types/schema/nodes/headshot_element.d.ts +25 -0
  24. package/dist/types/schema/nodes/headshot_grid.d.ts +24 -0
  25. package/dist/types/schema/nodes/headshot_image.d.ts +26 -0
  26. package/dist/types/schema/types.d.ts +1 -1
  27. package/dist/types/version.d.ts +1 -1
  28. package/package.json +22 -21
  29. package/src/errors.ts +28 -0
  30. package/src/getVersion.ts +21 -0
  31. package/src/index.ts +28 -0
  32. package/src/jats/__tests__/__fixtures__/debug-example.xml +136 -0
  33. package/src/jats/__tests__/__fixtures__/jats-abstract-no-body.xml +163 -0
  34. package/src/jats/__tests__/__fixtures__/jats-citations.xml +472 -0
  35. package/src/jats/__tests__/__fixtures__/jats-comments.xml +46 -0
  36. package/src/jats/__tests__/__fixtures__/jats-document.xml +134 -0
  37. package/src/jats/__tests__/__fixtures__/jats-example-doc.xml +1235 -0
  38. package/src/jats/__tests__/__fixtures__/jats-example-front-only.xml +26 -0
  39. package/src/jats/__tests__/__fixtures__/jats-example-full.xml +209 -0
  40. package/src/jats/__tests__/__fixtures__/jats-example-no-back.xml +156 -0
  41. package/src/jats/__tests__/__fixtures__/jats-example-no-body.xml +91 -0
  42. package/src/jats/__tests__/__fixtures__/jats-example.xml +221 -0
  43. package/src/jats/__tests__/__fixtures__/jats-fn-group.xml +60 -0
  44. package/src/jats/__tests__/__fixtures__/jats-import-no-refs.xml +1077 -0
  45. package/src/jats/__tests__/__fixtures__/jats-import.xml +1578 -0
  46. package/src/jats/__tests__/__fixtures__/jats-roundtrip.xml +133 -0
  47. package/src/jats/__tests__/__fixtures__/jats-tables-example.xml +2043 -0
  48. package/src/jats/__tests__/__fixtures__/math-fragment.xml +12 -0
  49. package/src/jats/__tests__/__snapshots__/citeproc.test.ts.snap +57 -0
  50. package/src/jats/__tests__/__snapshots__/create-article-node.test.ts.snap +65 -0
  51. package/src/jats/__tests__/__snapshots__/jats-exporter.test.ts.snap +7 -0
  52. package/src/jats/__tests__/__snapshots__/jats-importer.test.ts.snap +59796 -0
  53. package/src/jats/__tests__/__snapshots__/jats-roundtrip.test.ts.snap +18 -0
  54. package/src/jats/__tests__/citations.ts +25 -0
  55. package/src/jats/__tests__/citeproc.test.ts +195 -0
  56. package/src/jats/__tests__/create-article-node.test.ts +29 -0
  57. package/src/jats/__tests__/data/section-categories.ts +212 -0
  58. package/src/jats/__tests__/files.ts +24 -0
  59. package/src/jats/__tests__/jats-exporter.test.ts +223 -0
  60. package/src/jats/__tests__/jats-importer.test.ts +567 -0
  61. package/src/jats/__tests__/jats-roundtrip.test.ts +66 -0
  62. package/src/jats/__tests__/utils.ts +90 -0
  63. package/src/jats/exporter/citeproc.ts +265 -0
  64. package/src/jats/exporter/jats-exporter.ts +2093 -0
  65. package/src/jats/exporter/jats-versions.ts +50 -0
  66. package/src/jats/exporter/labels.ts +101 -0
  67. package/src/jats/importer/create-article-node.ts +52 -0
  68. package/src/jats/importer/jats-comments.ts +111 -0
  69. package/src/jats/importer/jats-dom-parser.ts +1306 -0
  70. package/src/jats/importer/jats-parser-utils.ts +234 -0
  71. package/src/jats/importer/jats-transformations.ts +591 -0
  72. package/src/jats/importer/parse-jats-article.ts +106 -0
  73. package/src/jats/index.ts +21 -0
  74. package/src/jats/types.ts +16 -0
  75. package/src/lib/__tests__/footnotes.test.ts +36 -0
  76. package/src/lib/citeproc.ts +30 -0
  77. package/src/lib/credit-roles.ts +91 -0
  78. package/src/lib/deafults.ts +17 -0
  79. package/src/lib/footnotes.ts +85 -0
  80. package/src/lib/html.ts +56 -0
  81. package/src/lib/section-categories.ts +27 -0
  82. package/src/lib/utils.ts +145 -0
  83. package/src/lib/xml.ts +28 -0
  84. package/src/schema/__tests__/docs.ts +1911 -0
  85. package/src/schema/__tests__/groups.test.ts +61 -0
  86. package/src/schema/__tests__/migration.test.ts +23 -0
  87. package/src/schema/groups.ts +36 -0
  88. package/src/schema/index.ts +295 -0
  89. package/src/schema/marks.ts +254 -0
  90. package/src/schema/migration/migrate.ts +77 -0
  91. package/src/schema/migration/migration-script.ts +26 -0
  92. package/src/schema/migration/migration-scripts/1.2.5.ts +44 -0
  93. package/src/schema/migration/migration-scripts/2.3.22.ts +52 -0
  94. package/src/schema/migration/migration-scripts/3.0.12.ts +33 -0
  95. package/src/schema/migration/migration-scripts/3.0.21.ts +50 -0
  96. package/src/schema/migration/migration-scripts/3.0.30.ts +65 -0
  97. package/src/schema/migration/migration-scripts/3.0.31.ts +40 -0
  98. package/src/schema/migration/migration-scripts/3.0.41.ts +37 -0
  99. package/src/schema/migration/migration-scripts/3.0.55.ts +42 -0
  100. package/src/schema/migration/migration-scripts/3.0.56.ts +114 -0
  101. package/src/schema/migration/migration-scripts/4.2.13.ts +37 -0
  102. package/src/schema/migration/migration-scripts/4.2.15.ts +48 -0
  103. package/src/schema/migration/migration-scripts/4.3.23.ts +55 -0
  104. package/src/schema/migration/migration-scripts/4.3.34.ts +132 -0
  105. package/src/schema/migration/migration-scripts/4.3.35.ts +41 -0
  106. package/src/schema/migration/migration-scripts/index.ts +49 -0
  107. package/src/schema/nodes/abstracts.ts +29 -0
  108. package/src/schema/nodes/affiliation.ts +88 -0
  109. package/src/schema/nodes/affiliations.ts +30 -0
  110. package/src/schema/nodes/alt_text.ts +36 -0
  111. package/src/schema/nodes/alt_title.ts +40 -0
  112. package/src/schema/nodes/alt_titles_section.ts +58 -0
  113. package/src/schema/nodes/attachment.ts +46 -0
  114. package/src/schema/nodes/attachments.ts +45 -0
  115. package/src/schema/nodes/attribution.ts +38 -0
  116. package/src/schema/nodes/author_notes.ts +44 -0
  117. package/src/schema/nodes/award.ts +52 -0
  118. package/src/schema/nodes/awards.ts +45 -0
  119. package/src/schema/nodes/backmatter.ts +31 -0
  120. package/src/schema/nodes/bibliography_element.ts +58 -0
  121. package/src/schema/nodes/bibliography_item.ts +108 -0
  122. package/src/schema/nodes/bibliography_section.ts +60 -0
  123. package/src/schema/nodes/blockquote_element.ts +79 -0
  124. package/src/schema/nodes/body.ts +29 -0
  125. package/src/schema/nodes/box_element.ts +67 -0
  126. package/src/schema/nodes/caption.ts +67 -0
  127. package/src/schema/nodes/caption_title.ts +67 -0
  128. package/src/schema/nodes/citation.ts +70 -0
  129. package/src/schema/nodes/comment.ts +50 -0
  130. package/src/schema/nodes/comments.ts +28 -0
  131. package/src/schema/nodes/contributor.ts +87 -0
  132. package/src/schema/nodes/contributors.ts +40 -0
  133. package/src/schema/nodes/core_section.ts +27 -0
  134. package/src/schema/nodes/corresp.ts +49 -0
  135. package/src/schema/nodes/cross_reference.ts +64 -0
  136. package/src/schema/nodes/doc.ts +21 -0
  137. package/src/schema/nodes/embed.ts +55 -0
  138. package/src/schema/nodes/equation.ts +65 -0
  139. package/src/schema/nodes/equation_element.ts +61 -0
  140. package/src/schema/nodes/figure.ts +65 -0
  141. package/src/schema/nodes/figure_element.ts +73 -0
  142. package/src/schema/nodes/footnote.ts +95 -0
  143. package/src/schema/nodes/footnotes_element.ts +69 -0
  144. package/src/schema/nodes/footnotes_section.ts +61 -0
  145. package/src/schema/nodes/general_table_footnote.ts +42 -0
  146. package/src/schema/nodes/graphical_abstract_section.ts +62 -0
  147. package/src/schema/nodes/hard_break.ts +36 -0
  148. package/src/schema/nodes/headshot_element.ts +48 -0
  149. package/src/schema/nodes/headshot_grid.ts +46 -0
  150. package/src/schema/nodes/headshot_image.ts +65 -0
  151. package/src/schema/nodes/hero_image.ts +46 -0
  152. package/src/schema/nodes/highlight_marker.ts +68 -0
  153. package/src/schema/nodes/image_element.ts +49 -0
  154. package/src/schema/nodes/inline_equation.ts +68 -0
  155. package/src/schema/nodes/inline_footnote.ts +66 -0
  156. package/src/schema/nodes/keyword.ts +61 -0
  157. package/src/schema/nodes/keyword_group.ts +63 -0
  158. package/src/schema/nodes/keywords.ts +59 -0
  159. package/src/schema/nodes/keywords_element.ts +64 -0
  160. package/src/schema/nodes/link.ts +79 -0
  161. package/src/schema/nodes/list.ts +134 -0
  162. package/src/schema/nodes/listing.ts +91 -0
  163. package/src/schema/nodes/listing_element.ts +61 -0
  164. package/src/schema/nodes/long_desc.ts +36 -0
  165. package/src/schema/nodes/manuscript.ts +86 -0
  166. package/src/schema/nodes/missing_figure.ts +59 -0
  167. package/src/schema/nodes/paragraph.ts +77 -0
  168. package/src/schema/nodes/placeholder.ts +62 -0
  169. package/src/schema/nodes/placeholder_element.ts +60 -0
  170. package/src/schema/nodes/pullquote_element.ts +81 -0
  171. package/src/schema/nodes/quote_image.ts +64 -0
  172. package/src/schema/nodes/section.ts +69 -0
  173. package/src/schema/nodes/section_label.ts +39 -0
  174. package/src/schema/nodes/section_title.ts +58 -0
  175. package/src/schema/nodes/subtitle.ts +40 -0
  176. package/src/schema/nodes/subtitles.ts +51 -0
  177. package/src/schema/nodes/supplement.ts +77 -0
  178. package/src/schema/nodes/supplements.ts +60 -0
  179. package/src/schema/nodes/table.ts +144 -0
  180. package/src/schema/nodes/table_col.ts +76 -0
  181. package/src/schema/nodes/table_element.ts +67 -0
  182. package/src/schema/nodes/table_element_footer.ts +42 -0
  183. package/src/schema/nodes/text.ts +31 -0
  184. package/src/schema/nodes/title.ts +43 -0
  185. package/src/schema/nodes/trans_abstract.ts +58 -0
  186. package/src/schema/nodes/trans_graphical_abstract.ts +67 -0
  187. package/src/schema/types.ts +243 -0
  188. package/src/tests.ts +33 -0
  189. package/src/transformer/id.ts +23 -0
  190. package/src/transformer/index.ts +21 -0
  191. package/src/transformer/node-names.ts +75 -0
  192. package/src/transformer/node-title.ts +116 -0
  193. package/src/transformer/node-types.ts +39 -0
  194. package/src/transformer/node-validator.ts +82 -0
  195. package/src/types.ts +25 -0
  196. package/src/version.ts +1 -0
@@ -0,0 +1,472 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD with OASIS Tables with MathML3 v1.2 20190208//EN" "http://jats.nlm.nih.gov/archiving/1.2/JATS-archive-oasis-article1-mathml3.dtd">
3
+ <article article-type="research-article" dtd-version="1.1" xml:lang="en"
4
+ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML">
5
+ <front>
6
+ <journal-meta>
7
+ <journal-id journal-id-type="publisher-id">APA6</journal-id>
8
+ <journal-id journal-id-type="nlm-ta">Brain Behav</journal-id>
9
+ <journal-title-group>
10
+ <journal-title>Brain and Behavior</journal-title>
11
+ <abbrev-journal-title abbrev-type="pubmed">Brain Behav.</abbrev-journal-title>
12
+ </journal-title-group>
13
+ <issn pub-type="epub">2162-3279</issn>
14
+ <publisher>
15
+ <publisher-name>John Wiley and Sons</publisher-name>
16
+ </publisher>
17
+ </journal-meta>
18
+ <article-meta>
19
+ <article-id pub-id-type="doi">10.5555/BRB3-2019-12-0787</article-id>
20
+ <article-id pub-id-type="publisher-id">BRB3-2019-12-0787</article-id>
21
+ <article-categories>
22
+ <subj-group subj-group-type="heading">
23
+ <subject>Original Research</subject>
24
+ </subj-group>
25
+ </article-categories>
26
+ <title-group>
27
+ <article-title>Blood <bold>pressure</bold> after follow up in a stroke prevention
28
+ clinic
29
+ </article-title>
30
+ <alt-title alt-title-type="right-running">Blood pressure after stroke</alt-title>
31
+ </title-group>
32
+ <contrib-group>
33
+ <contrib contrib-type="author" corresp="yes">
34
+ <contrib-id contrib-id-type="orcid" authenticated="true"
35
+ >
36
+ https://orcid.org/0000-0003-2217-5904
37
+ </contrib-id>
38
+ <string-name>
39
+ Eminem
40
+ </string-name>
41
+ <degrees>RN</degrees>
42
+ <degrees>MPH</degrees>
43
+ <degrees>PhD</degrees>
44
+ <xref ref-type="aff" rid="BRB3-2019-12-0787-aff1"/>
45
+ </contrib>
46
+ <contrib contrib-type="author">
47
+ <name>
48
+ <surname>Poulsen</surname>
49
+ <given-names>Mai Bang</given-names>
50
+ </name>
51
+ <degrees>MD</degrees>
52
+ <degrees>PhD</degrees>
53
+ <xref ref-type="fn" rid="BRB3-2019-12-0787-afn-0001">*</xref>
54
+ <xref ref-type="aff" rid="BRB3-2019-12-0787-aff1"/>
55
+ </contrib>
56
+ <aff id="BRB3-2019-12-0787-aff1"><institution content-type="dept">Department of
57
+ Neurology</institution>, <institution>Herlev og Gentofte
58
+ Hospital</institution>, <addr-line>Borgmester Ib Juuls Vej 1</addr-line>,
59
+ <addr-line>
60
+ <postal-code>2730</postal-code>
61
+ <city>Herlev</city>
62
+ </addr-line>
63
+ ,
64
+ <country>Denmark</country>
65
+ </aff>
66
+ </contrib-group>
67
+ <author-notes>
68
+ <corresp id="BRB3-2019-12-0787-cor1">Corresponding author: Agnete Hviid
69
+ Hornnes&#x2028;<email xlink:href="agnete.hviid.hornnes@regionh.dk"
70
+ >
71
+ agnete.hviid.hornnes@regionh.dk</email>&#x2028;FAX: 0045 3868 4031
72
+ </corresp>
73
+ <fn id="BRB3-2019-12-0787-afn-0001">
74
+ <label>*</label>
75
+ <p>Mai Bang Poulsen, MD, PhD&#x2028;Department of
76
+ Neurology&#x2028;Nordsj&#x00E6;llands Hospital&#x2028;Dyrehavevej
77
+ 29&#x2028;3400 Hiller&#x00F8;d&#x2028;Denmark
78
+ </p>
79
+ </fn>
80
+ <fn id="BRB3-2019-12-0787-afn-0002">
81
+ <p>ClinicalTrials.gov NCT03782857.</p>
82
+ </fn>
83
+ <fn fn-type="con">
84
+ <p content-type="fn-title">Contributor Information</p>
85
+ <p>Agnete Hviid Hornnes, Email: agnete.hviid.hornnes@regionh.dk <ext-link
86
+ ext-link-type="uri" xlink:href="https://orcid.org/0000-0003-2217-5904"
87
+ >
88
+ https//orcid.org/0000-0003-2217-5904</ext-link>&#x2028;Mai Bang Poulsen,
89
+ Email: mai.bang.poulsen.02@regionh.dk
90
+ </p>
91
+ <p>Both authors have made substantial contributions to conception and design and
92
+ acquisitions and analyses
93
+ <?AuthorQuery id="Q3" queryText="Check meaning - US English uses different spellings for the noun
94
+ &quot;analyses&quot; (more than one analysis) and the verb form &quot;analyzes&quot;"?> and
95
+ interpretation of data and have; and been
96
+ involved in writing the manuscript and given final approval of the version
97
+ to be published. Both authors have participated sufficiently in the work to
98
+ take public responsibility for the content; and agree to be accountable for
99
+ all aspects of the work in ensuring that questions related to the accuracy
100
+ or integrity of any part of the work are appropriately investigated and
101
+ resolved.
102
+ </p>
103
+ </fn>
104
+ </author-notes>
105
+ <pub-date pub-type="ppub">
106
+ <year/>
107
+ </pub-date>
108
+ <volume/>
109
+ <supplementary-material id="S1"
110
+ xlink:href="attachment:7d9d686b-5488-44a5-a1c5-46351e7f9312" mimetype="application"
111
+ mime-subtype="vnd.openxmlformats-officedocument.wordprocessingml.document">
112
+ <caption>
113
+ <title>final manuscript-hum-huili-dbh-suicide-20200707_figures (9)
114
+ </title>
115
+ </caption>
116
+ </supplementary-material>
117
+ <history>
118
+ <date date-type="received">
119
+ <day>09</day>
120
+ <month>12</month>
121
+ <year>2019</year>
122
+ </date>
123
+ <date date-type="rev-recd">
124
+ <day/>
125
+ <month/>
126
+ <year/>
127
+ </date>
128
+ <date date-type="accepted">
129
+ <day>27</day>
130
+ <month>04</month>
131
+ <year>2020</year>
132
+ </date>
133
+ </history>
134
+ <permissions></permissions>
135
+ <self-uri content-type="document"
136
+ xlink:href="http://www.harmreductionjournal.com/content/1/1/5"/>
137
+ <self-uri content-type="document"
138
+ xlink:href="http://www.harmreductionjournal.com/content/1/1/2"/>
139
+
140
+ <abstract>
141
+ <sec>
142
+ <title>Objectives</title>
143
+ <p>In Denmark 25% of hospital admissions with stroke are recurrent strokes. With
144
+ thrombolytic treatment more patients survive with only minor disability.
145
+ This promising development should be followed up by intensive secondary
146
+ prevention. Hypertension is the most important target. We aimed at testing
147
+ the hypotheses that early follow up in a preventive clinic would result in
148
+ 1) A higher proportion of patients with blood pressure at target, 2) Time to
149
+ stroke recurrence, myocardial infarction and death would be longer in the
150
+ intervention group compared to controls.
151
+ </p>
152
+ </sec>
153
+ <sec>
154
+ <title>Materials and Methods</title>
155
+ <p>Eligible patients admitted to the stroke unit of Herlev Hospital were
156
+ randomized shortly before discharge to intervention or control group. Of 78
157
+ included participants data from 73 was available for follow up nine months
158
+ after inclusion. Patients in the intervention group were seen in the clinic
159
+ within one week. In case of hypertension treatment was initiated or supplied
160
+ with a new drug. We used individual targets for blood pressure according to
161
+ diagnosis of stroke and patients&#x2019; comorbidity. Patients in the
162
+ intervention group had a median of five visits to the preventive clinic.
163
+ </p>
164
+ </sec>
165
+ <sec>
166
+ <title>Results</title>
167
+ <p>In the intervention group blood pressure was treated to target in 25 patients
168
+ (69%) versus 14 (38%) in the control group (<italic>p</italic>&#x2009;=&#x2009;0.007).
169
+ Median time to first event was 44 months (4&#x2013;49) in the intervention
170
+ group and 19 months (4&#x2013;37) in controls (
171
+ <italic>p</italic>
172
+ &#x2009;=&#x2009;0.316).
173
+ </p>
174
+ </sec>
175
+ <sec>
176
+ <title>Conclusions</title>
177
+ <p>Treatment of hypertension to individual targets after stroke is feasible. It
178
+ may postpone recurrent stroke and death in stroke survivors.
179
+ </p>
180
+ </sec>
181
+ </abstract>
182
+ <abstract abstract-type="graphical">
183
+ <fig id="fig-1" position="anchor" fig-type="half-left">
184
+ <graphic xlink:href="demo1.jpg"/>
185
+ </fig>
186
+ </abstract>
187
+ <abstract abstract-type="key-image">
188
+ <fig id="fig-2" position="anchor" fig-type="half-left">
189
+ <graphic xlink:href="demo2.jpg"/>
190
+ </fig>
191
+ </abstract>
192
+ <abstract abstract-type="short">
193
+ <p>The is the third and last part of the volume devoted to solubility data of rare
194
+ earth metal chlorides in water and in ternary and quaternary aqueous systems.
195
+ Compilations of all available experimental data are introduced for each rare
196
+ earth
197
+ metal chloride with a corresponding critical evaluation. This part covers
198
+ chlorides
199
+ of Gd, Tb, Dy, Ho, Er, Tm, Yb, and Lu, with coverage of the literature through
200
+ the
201
+ middle of 2008.
202
+ </p>
203
+ </abstract>
204
+ <kwd-group kwd-group-type="author">
205
+ <title>KEYWORDS &#x2028;</title>
206
+ <kwd>secondary prevention</kwd>
207
+ <kwd>stroke recurrence</kwd>
208
+ <kwd>blood pressure</kwd>
209
+ <kwd>blood pressure target</kwd>
210
+ <kwd>randomized controlled trial</kwd>
211
+ </kwd-group>
212
+ <funding-group>
213
+ <award-group>
214
+ <funding-source>National Institutes of Health</funding-source>
215
+ <principal-award-recipient>Berkeley</principal-award-recipient>
216
+ <award-id>GM18458</award-id>
217
+ </award-group>
218
+ <award-group>
219
+ <funding-source>National Science Foundation</funding-source>
220
+ <award-id>DMS-0204674</award-id>
221
+ <award-id>DMS-0244638</award-id>
222
+ </award-group>
223
+ </funding-group>
224
+ <counts>
225
+ <count count-type="box" count="0"/>
226
+ <fig-count count="3"/>
227
+ <table-count count="2"/>
228
+ <equation-count count="0"/>
229
+ <ref-count count="25"/>
230
+ <word-count count="4484"/>
231
+ </counts>
232
+ </article-meta>
233
+ </front>
234
+ <body>
235
+ <sec>
236
+ <title>Section</title>
237
+ <p>This work was supported by the National Natural Science Foundation of China
238
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref1">
239
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
240
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
241
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
242
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
243
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
244
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
245
+ Psychology (KLMH2019K03).
246
+ </p>
247
+ <p>This work was supported by the National Natural Science Foundation of China
248
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref2">
249
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
250
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
251
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
252
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
253
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
254
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
255
+ Psychology (KLMH2019K03).
256
+ </p>
257
+ <p>This work was supported by the National Natural Science Foundation of China
258
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref3">
259
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
260
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
261
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
262
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
263
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
264
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
265
+ Psychology (KLMH2019K03).
266
+ </p>
267
+ <p>This work was supported by the National Natural Science Foundation of China
268
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref4">
269
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
270
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
271
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
272
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
273
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
274
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
275
+ Psychology (KLMH2019K03).
276
+ </p>
277
+ <p>This work was supported by the National Natural Science Foundation of China
278
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref5">
279
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
280
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
281
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
282
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
283
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
284
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
285
+ Psychology (KLMH2019K03).
286
+ </p>
287
+ <p>This work was supported by the National Natural Science Foundation of China
288
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref6">
289
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
290
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
291
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
292
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
293
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
294
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
295
+ Psychology (KLMH2019K03).
296
+ </p>
297
+ <p>This work was supported by the National Natural Science Foundation of China
298
+ (81771439), Jiangsu Provincial Key <xref ref-type="bibr" rid="ref7">
299
+ 1</xref>Research and Development Program (BE2020661 and BE2018662), Jiangsu
300
+ Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and
301
+ LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal
302
+ Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048
303
+ and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706,
304
+ SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of
305
+ Psychology (KLMH2019K03).
306
+ </p>
307
+
308
+
309
+ </sec>
310
+ </body>
311
+ <back>
312
+ <fn-group>
313
+ <fn fn-type="financial-disclosure">
314
+ <p content-type="fn-title">FUNDING INFORMATION</p>
315
+ <p>A paragraph</p>
316
+ </fn>
317
+ </fn-group>
318
+ <ref-list>
319
+ <title>References</title>
320
+ <ref id="ref1">
321
+ <element-citation publication-type="journal" publication-format="print"
322
+ specific-use="archival">
323
+ <person-group person-group-type="author">
324
+ <name>
325
+ <surname>Doe</surname>
326
+ <given-names>John</given-names>
327
+ </name>
328
+ <name>
329
+ <surname>Smith</surname>
330
+ <given-names>Jane</given-names>
331
+ </name>
332
+ </person-group>
333
+ <article-title>Advancements in Artificial Intelligence</article-title>
334
+ <source>AI Research Journal</source>
335
+ <year iso-8601-date="2021-05-10">2021</year>
336
+ <month>May</month>
337
+ <day>10</day>
338
+ <volume>18</volume>
339
+ <issue>2</issue>
340
+ <supplement>Suppl. 1</supplement>
341
+ <fpage>45</fpage>
342
+ <lpage>60</lpage>
343
+ <elocation-id>e012345</elocation-id>
344
+ <pub-id pub-id-type="doi">10.1000/xyz123</pub-id>
345
+ <ext-link ext-link-type="uri">https://doi.org/10.1000/xyz123</ext-link>
346
+ </element-citation>
347
+ </ref>
348
+ <ref id="ref2">
349
+ <element-citation publication-type="book" publication-format="print">
350
+ <person-group person-group-type="author">
351
+ <name>
352
+ <surname>Brown</surname>
353
+ <given-names>Michael</given-names>
354
+ </name>
355
+ <name>
356
+ <surname>Green</surname>
357
+ <given-names>Anna</given-names>
358
+ </name>
359
+ </person-group>
360
+ <person-group person-group-type="editor">
361
+ <name>
362
+ <surname>Williams</surname>
363
+ <given-names>David</given-names>
364
+ </name>
365
+ <name>
366
+ <surname>Taylor</surname>
367
+ <given-names>Sophia</given-names>
368
+ </name>
369
+ </person-group>
370
+ <source>Introduction to Data Science</source>
371
+ <publisher-name>Springer</publisher-name>
372
+ <publisher-loc>New York, USA</publisher-loc>
373
+ <year iso-8601-date="2020">2020</year>
374
+ <edition>2nd</edition>
375
+ <volume>1</volume>
376
+ <series>Data Science Series</series>
377
+ <ext-link ext-link-type="uri">https://doi.org/10.1000/xyz123</ext-link>
378
+ <size units="pages">350</size>
379
+ </element-citation>
380
+ </ref>
381
+ <ref id="ref3">
382
+ <element-citation publication-type="book-chapter">
383
+ <person-group person-group-type="author">
384
+ <name>
385
+ <surname>Miller</surname>
386
+ <given-names>Susan</given-names>
387
+ </name>
388
+ </person-group>
389
+ <article-title>Machine Learning Applications</article-title>
390
+ <source>Handbook of AI</source>
391
+ <publisher-name>Oxford University Press</publisher-name>
392
+ <year>2022</year>
393
+ <chapter-title>Chapter 5</chapter-title>
394
+ <fpage>105</fpage>
395
+ <lpage>120</lpage>
396
+ </element-citation>
397
+ </ref>
398
+ <ref id="ref4">
399
+ <element-citation publication-type="confproc">
400
+ <person-group person-group-type="author">
401
+ <name>
402
+ <surname>Johnson</surname>
403
+ <given-names>Emily</given-names>
404
+ </name>
405
+ </person-group>
406
+ <article-title>Deep Learning in Image Processing</article-title>
407
+ <conference>
408
+ <conf-name>ICML 2019</conf-name>
409
+ <conf-loc>San Francisco, USA</conf-loc>
410
+ <conf-date iso-8601-date="2019-06-20">June 20-22, 2019</conf-date>
411
+ </conference>
412
+ <source>Proceedings of the International Conference on Machine Learning</source>
413
+ <year>2019</year>
414
+ <fpage>223</fpage>
415
+ <lpage>230</lpage>
416
+ <publisher-name>IEEE</publisher-name>
417
+ <publisher-loc>New York, USA</publisher-loc>
418
+ <ext-link ext-link-type="uri">https://icml2019.org/papers/223</ext-link>
419
+ </element-citation>
420
+ </ref>
421
+ <ref id="ref5">
422
+ <element-citation publication-type="thesis">
423
+ <person-group person-group-type="author">
424
+ <name>
425
+ <surname>Garcia</surname>
426
+ <given-names>Daniel</given-names>
427
+ </name>
428
+ </person-group>
429
+ <article-title>Neural Networks for Natural Language Processing</article-title>
430
+ <ext-link ext-link-type="uri">https://escholarship.org/uc/item/xyz123</ext-link>
431
+ <year iso-8601-date="2021">2021</year>
432
+ <institution>University of California, Berkeley</institution>
433
+ <size units="pages">350</size>
434
+ <pub-id pub-id-type="doi">10.1234/thesis2021</pub-id>
435
+ <comment>Located at: Modern Manuscripts Collection,
436
+ History of Medicine Division, National Library of
437
+ Medicine, Bethesda, MD; MS F 179
438
+ </comment>
439
+ </element-citation>
440
+ </ref>
441
+ <ref id="ref6">
442
+ <element-citation publication-type="web">
443
+ <person-group person-group-type="author">
444
+ <name>
445
+ <surname>Jones</surname>
446
+ <given-names>Sarah</given-names>
447
+ </name>
448
+ </person-group>
449
+ <article-title>Big Data Trends in 2023</article-title>
450
+ <source>Data Science Blog</source>
451
+ <year>2023</year>
452
+ <ext-link ext-link-type="uri">https://www.datascienceblog.com/big-data-2023</ext-link>
453
+ <date-in-citation iso-8601-date="2024-02-15">Accessed: February 15, 2024</date-in-citation>
454
+ </element-citation>
455
+ </ref>
456
+ <ref id="ref7">
457
+ <element-citation publication-type="other">
458
+ <person-group person-group-type="author">
459
+ <name>
460
+ <surname>Adams</surname>
461
+ <given-names>Lisa</given-names>
462
+ </name>
463
+ </person-group>
464
+ <article-title>Private Research Report on AI Ethics</article-title>
465
+ <source>Internal Research Report</source>
466
+ <year>2022</year>
467
+ <publisher-name>AI Ethics Initiative</publisher-name>
468
+ </element-citation>
469
+ </ref>
470
+ </ref-list>
471
+ </back>
472
+ </article>
@@ -0,0 +1,46 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD with OASIS Tables with MathML3 v1.2 20190208//EN" "http://jats.nlm.nih.gov/archiving/1.2/JATS-archive-oasis-article1-mathml3.dtd">
3
+ <article xmlns:xlink="http://www.w3.org/1999/xlink" article-type="research-article">
4
+ <front>
5
+ <article-meta>
6
+ <title-group>
7
+ <article-title>A title with a comment</article-title>
8
+ </title-group>
9
+ <abstract>
10
+ <p>A paragraph with<?AuthorQuery id="c1" queryText="Abstract comment"?> a comment</p>
11
+ </abstract>
12
+ <kwd-group>
13
+ <kwd>A<?AuthorQuery id="c1" queryText="Keyword comment"?> keyword with a comment</kwd>
14
+ </kwd-group>
15
+ </article-meta>
16
+ </front>
17
+ <body>
18
+ <sec>
19
+ <title>Section</title>
20
+ <p>A <?AuthorQuery id="c1" queryText="Body comment"?>paragraph with a comment</p>
21
+ </sec>
22
+ </body>
23
+ <back>
24
+ <fn-group>
25
+ <fn fn-type="financial-disclosure">
26
+ <p content-type="fn-title">FUNDING INFORMATION</p>
27
+ <p>A paragraph with a comment<?AuthorQuery id="c1" queryText="Back comment"?></p>
28
+ </fn>
29
+ </fn-group>
30
+ <ref-list>
31
+ <title>References</title>
32
+ <ref id="ref1">
33
+ <element-citation publication-type="journal">
34
+ <?AuthorQuery id="Q1" queryText="Ref comment"?>
35
+ <year>1992</year>
36
+ <article-title>Test article</article-title>
37
+ <source>Test journal</source>
38
+ <volume>0</volume>
39
+ <issue>0</issue>
40
+ <fpage>0</fpage>
41
+ <lpage>0</lpage>
42
+ </element-citation>
43
+ </ref>
44
+ </ref-list>
45
+ </back>
46
+ </article>