@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.
- package/dist/cjs/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/cjs/jats/exporter/jats-exporter.js +3 -0
- package/dist/cjs/jats/importer/jats-dom-parser.js +41 -1
- package/dist/cjs/schema/index.js +9 -0
- package/dist/cjs/schema/nodes/headshot_element.js +38 -0
- package/dist/cjs/schema/nodes/headshot_grid.js +37 -0
- package/dist/cjs/schema/nodes/headshot_image.js +51 -0
- package/dist/cjs/transformer/node-names.js +2 -0
- package/dist/cjs/transformer/node-title.js +6 -0
- package/dist/cjs/version.js +1 -1
- package/dist/es/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/es/jats/exporter/jats-exporter.js +3 -0
- package/dist/es/jats/importer/jats-dom-parser.js +41 -1
- package/dist/es/schema/index.js +9 -0
- package/dist/es/schema/nodes/headshot_element.js +34 -0
- package/dist/es/schema/nodes/headshot_grid.js +33 -0
- package/dist/es/schema/nodes/headshot_image.js +48 -0
- package/dist/es/transformer/node-names.js +2 -0
- package/dist/es/transformer/node-title.js +6 -0
- package/dist/es/version.js +1 -1
- package/dist/types/jats/__tests__/utils.d.ts +1 -1
- package/dist/types/schema/index.d.ts +3 -0
- package/dist/types/schema/nodes/headshot_element.d.ts +25 -0
- package/dist/types/schema/nodes/headshot_grid.d.ts +24 -0
- package/dist/types/schema/nodes/headshot_image.d.ts +26 -0
- package/dist/types/schema/types.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +22 -21
- package/src/errors.ts +28 -0
- package/src/getVersion.ts +21 -0
- package/src/index.ts +28 -0
- package/src/jats/__tests__/__fixtures__/debug-example.xml +136 -0
- package/src/jats/__tests__/__fixtures__/jats-abstract-no-body.xml +163 -0
- package/src/jats/__tests__/__fixtures__/jats-citations.xml +472 -0
- package/src/jats/__tests__/__fixtures__/jats-comments.xml +46 -0
- package/src/jats/__tests__/__fixtures__/jats-document.xml +134 -0
- package/src/jats/__tests__/__fixtures__/jats-example-doc.xml +1235 -0
- package/src/jats/__tests__/__fixtures__/jats-example-front-only.xml +26 -0
- package/src/jats/__tests__/__fixtures__/jats-example-full.xml +209 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-back.xml +156 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-body.xml +91 -0
- package/src/jats/__tests__/__fixtures__/jats-example.xml +221 -0
- package/src/jats/__tests__/__fixtures__/jats-fn-group.xml +60 -0
- package/src/jats/__tests__/__fixtures__/jats-import-no-refs.xml +1077 -0
- package/src/jats/__tests__/__fixtures__/jats-import.xml +1578 -0
- package/src/jats/__tests__/__fixtures__/jats-roundtrip.xml +133 -0
- package/src/jats/__tests__/__fixtures__/jats-tables-example.xml +2043 -0
- package/src/jats/__tests__/__fixtures__/math-fragment.xml +12 -0
- package/src/jats/__tests__/__snapshots__/citeproc.test.ts.snap +57 -0
- package/src/jats/__tests__/__snapshots__/create-article-node.test.ts.snap +65 -0
- package/src/jats/__tests__/__snapshots__/jats-exporter.test.ts.snap +7 -0
- package/src/jats/__tests__/__snapshots__/jats-importer.test.ts.snap +59796 -0
- package/src/jats/__tests__/__snapshots__/jats-roundtrip.test.ts.snap +18 -0
- package/src/jats/__tests__/citations.ts +25 -0
- package/src/jats/__tests__/citeproc.test.ts +195 -0
- package/src/jats/__tests__/create-article-node.test.ts +29 -0
- package/src/jats/__tests__/data/section-categories.ts +212 -0
- package/src/jats/__tests__/files.ts +24 -0
- package/src/jats/__tests__/jats-exporter.test.ts +223 -0
- package/src/jats/__tests__/jats-importer.test.ts +567 -0
- package/src/jats/__tests__/jats-roundtrip.test.ts +66 -0
- package/src/jats/__tests__/utils.ts +90 -0
- package/src/jats/exporter/citeproc.ts +265 -0
- package/src/jats/exporter/jats-exporter.ts +2093 -0
- package/src/jats/exporter/jats-versions.ts +50 -0
- package/src/jats/exporter/labels.ts +101 -0
- package/src/jats/importer/create-article-node.ts +52 -0
- package/src/jats/importer/jats-comments.ts +111 -0
- package/src/jats/importer/jats-dom-parser.ts +1306 -0
- package/src/jats/importer/jats-parser-utils.ts +234 -0
- package/src/jats/importer/jats-transformations.ts +591 -0
- package/src/jats/importer/parse-jats-article.ts +106 -0
- package/src/jats/index.ts +21 -0
- package/src/jats/types.ts +16 -0
- package/src/lib/__tests__/footnotes.test.ts +36 -0
- package/src/lib/citeproc.ts +30 -0
- package/src/lib/credit-roles.ts +91 -0
- package/src/lib/deafults.ts +17 -0
- package/src/lib/footnotes.ts +85 -0
- package/src/lib/html.ts +56 -0
- package/src/lib/section-categories.ts +27 -0
- package/src/lib/utils.ts +145 -0
- package/src/lib/xml.ts +28 -0
- package/src/schema/__tests__/docs.ts +1911 -0
- package/src/schema/__tests__/groups.test.ts +61 -0
- package/src/schema/__tests__/migration.test.ts +23 -0
- package/src/schema/groups.ts +36 -0
- package/src/schema/index.ts +295 -0
- package/src/schema/marks.ts +254 -0
- package/src/schema/migration/migrate.ts +77 -0
- package/src/schema/migration/migration-script.ts +26 -0
- package/src/schema/migration/migration-scripts/1.2.5.ts +44 -0
- package/src/schema/migration/migration-scripts/2.3.22.ts +52 -0
- package/src/schema/migration/migration-scripts/3.0.12.ts +33 -0
- package/src/schema/migration/migration-scripts/3.0.21.ts +50 -0
- package/src/schema/migration/migration-scripts/3.0.30.ts +65 -0
- package/src/schema/migration/migration-scripts/3.0.31.ts +40 -0
- package/src/schema/migration/migration-scripts/3.0.41.ts +37 -0
- package/src/schema/migration/migration-scripts/3.0.55.ts +42 -0
- package/src/schema/migration/migration-scripts/3.0.56.ts +114 -0
- package/src/schema/migration/migration-scripts/4.2.13.ts +37 -0
- package/src/schema/migration/migration-scripts/4.2.15.ts +48 -0
- package/src/schema/migration/migration-scripts/4.3.23.ts +55 -0
- package/src/schema/migration/migration-scripts/4.3.34.ts +132 -0
- package/src/schema/migration/migration-scripts/4.3.35.ts +41 -0
- package/src/schema/migration/migration-scripts/index.ts +49 -0
- package/src/schema/nodes/abstracts.ts +29 -0
- package/src/schema/nodes/affiliation.ts +88 -0
- package/src/schema/nodes/affiliations.ts +30 -0
- package/src/schema/nodes/alt_text.ts +36 -0
- package/src/schema/nodes/alt_title.ts +40 -0
- package/src/schema/nodes/alt_titles_section.ts +58 -0
- package/src/schema/nodes/attachment.ts +46 -0
- package/src/schema/nodes/attachments.ts +45 -0
- package/src/schema/nodes/attribution.ts +38 -0
- package/src/schema/nodes/author_notes.ts +44 -0
- package/src/schema/nodes/award.ts +52 -0
- package/src/schema/nodes/awards.ts +45 -0
- package/src/schema/nodes/backmatter.ts +31 -0
- package/src/schema/nodes/bibliography_element.ts +58 -0
- package/src/schema/nodes/bibliography_item.ts +108 -0
- package/src/schema/nodes/bibliography_section.ts +60 -0
- package/src/schema/nodes/blockquote_element.ts +79 -0
- package/src/schema/nodes/body.ts +29 -0
- package/src/schema/nodes/box_element.ts +67 -0
- package/src/schema/nodes/caption.ts +67 -0
- package/src/schema/nodes/caption_title.ts +67 -0
- package/src/schema/nodes/citation.ts +70 -0
- package/src/schema/nodes/comment.ts +50 -0
- package/src/schema/nodes/comments.ts +28 -0
- package/src/schema/nodes/contributor.ts +87 -0
- package/src/schema/nodes/contributors.ts +40 -0
- package/src/schema/nodes/core_section.ts +27 -0
- package/src/schema/nodes/corresp.ts +49 -0
- package/src/schema/nodes/cross_reference.ts +64 -0
- package/src/schema/nodes/doc.ts +21 -0
- package/src/schema/nodes/embed.ts +55 -0
- package/src/schema/nodes/equation.ts +65 -0
- package/src/schema/nodes/equation_element.ts +61 -0
- package/src/schema/nodes/figure.ts +65 -0
- package/src/schema/nodes/figure_element.ts +73 -0
- package/src/schema/nodes/footnote.ts +95 -0
- package/src/schema/nodes/footnotes_element.ts +69 -0
- package/src/schema/nodes/footnotes_section.ts +61 -0
- package/src/schema/nodes/general_table_footnote.ts +42 -0
- package/src/schema/nodes/graphical_abstract_section.ts +62 -0
- package/src/schema/nodes/hard_break.ts +36 -0
- package/src/schema/nodes/headshot_element.ts +48 -0
- package/src/schema/nodes/headshot_grid.ts +46 -0
- package/src/schema/nodes/headshot_image.ts +65 -0
- package/src/schema/nodes/hero_image.ts +46 -0
- package/src/schema/nodes/highlight_marker.ts +68 -0
- package/src/schema/nodes/image_element.ts +49 -0
- package/src/schema/nodes/inline_equation.ts +68 -0
- package/src/schema/nodes/inline_footnote.ts +66 -0
- package/src/schema/nodes/keyword.ts +61 -0
- package/src/schema/nodes/keyword_group.ts +63 -0
- package/src/schema/nodes/keywords.ts +59 -0
- package/src/schema/nodes/keywords_element.ts +64 -0
- package/src/schema/nodes/link.ts +79 -0
- package/src/schema/nodes/list.ts +134 -0
- package/src/schema/nodes/listing.ts +91 -0
- package/src/schema/nodes/listing_element.ts +61 -0
- package/src/schema/nodes/long_desc.ts +36 -0
- package/src/schema/nodes/manuscript.ts +86 -0
- package/src/schema/nodes/missing_figure.ts +59 -0
- package/src/schema/nodes/paragraph.ts +77 -0
- package/src/schema/nodes/placeholder.ts +62 -0
- package/src/schema/nodes/placeholder_element.ts +60 -0
- package/src/schema/nodes/pullquote_element.ts +81 -0
- package/src/schema/nodes/quote_image.ts +64 -0
- package/src/schema/nodes/section.ts +69 -0
- package/src/schema/nodes/section_label.ts +39 -0
- package/src/schema/nodes/section_title.ts +58 -0
- package/src/schema/nodes/subtitle.ts +40 -0
- package/src/schema/nodes/subtitles.ts +51 -0
- package/src/schema/nodes/supplement.ts +77 -0
- package/src/schema/nodes/supplements.ts +60 -0
- package/src/schema/nodes/table.ts +144 -0
- package/src/schema/nodes/table_col.ts +76 -0
- package/src/schema/nodes/table_element.ts +67 -0
- package/src/schema/nodes/table_element_footer.ts +42 -0
- package/src/schema/nodes/text.ts +31 -0
- package/src/schema/nodes/title.ts +43 -0
- package/src/schema/nodes/trans_abstract.ts +58 -0
- package/src/schema/nodes/trans_graphical_abstract.ts +67 -0
- package/src/schema/types.ts +243 -0
- package/src/tests.ts +33 -0
- package/src/transformer/id.ts +23 -0
- package/src/transformer/index.ts +21 -0
- package/src/transformer/node-names.ts +75 -0
- package/src/transformer/node-title.ts +116 -0
- package/src/transformer/node-types.ts +39 -0
- package/src/transformer/node-validator.ts +82 -0
- package/src/types.ts +25 -0
- package/src/version.ts +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
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">
|
|
4
|
+
<front>
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>A complete manuscript</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
<contrib-group content-type="authors">
|
|
10
|
+
<contrib contrib-type="author" id="MPContributor_975F60A6-2080-451B-A8E3-93F587BF3DEC">
|
|
11
|
+
<name>
|
|
12
|
+
<surname>User</surname>
|
|
13
|
+
<given-names>Developer</given-names>
|
|
14
|
+
</name>
|
|
15
|
+
</contrib>
|
|
16
|
+
</contrib-group>
|
|
17
|
+
<counts>
|
|
18
|
+
<count count-type="box" count="0" />
|
|
19
|
+
<fig-count count="0" />
|
|
20
|
+
<table-count count="0" />
|
|
21
|
+
<equation-count count="0" />
|
|
22
|
+
<ref-count count="2" />
|
|
23
|
+
<word-count count="2910" /></counts>
|
|
24
|
+
</article-meta>
|
|
25
|
+
</front>
|
|
26
|
+
</article>
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.1 20151215//EN" "https://jats.nlm.nih.gov/archiving/1.1/JATS-archivearticle1.dtd">
|
|
3
|
+
<article article-type="research-article" dtd-version="1.1" xml:lang="en" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML">
|
|
4
|
+
<front>
|
|
5
|
+
<journal-meta>
|
|
6
|
+
<journal-id journal-id-type="publisher-id">Journal Publisher ID</journal-id>
|
|
7
|
+
<journal-id journal-id-type="nlm-ta">Journal NLM ID</journal-id>
|
|
8
|
+
<journal-title-group>
|
|
9
|
+
<journal-title>Journal Title</journal-title>
|
|
10
|
+
<abbrev-journal-title abbrev-type="pubmed">PubMed Abbreviated Journal Title</abbrev-journal-title>
|
|
11
|
+
</journal-title-group>
|
|
12
|
+
<issn>1234-5678</issn>
|
|
13
|
+
<publisher><publisher-name>Publisher Name</publisher-name></publisher>
|
|
14
|
+
</journal-meta>
|
|
15
|
+
<article-meta>
|
|
16
|
+
<article-id pub-id-type="publisher-id">123412341234</article-id>
|
|
17
|
+
<title-group>
|
|
18
|
+
<article-title>This is the Article Title</article-title>
|
|
19
|
+
<subtitle>Which has a Subtitle</subtitle>
|
|
20
|
+
</title-group>
|
|
21
|
+
<contrib-group>
|
|
22
|
+
<contrib contrib-type="author" corresp="yes"><name><surname>Day</surname><given-names>Nathan</given-names></name><role>Member, IEEE</role><xref ref-type="fn" rid="afn1"><sup>1</sup></xref><xref ref-type="corresp" rid="cor1"><sup>*</sup></xref><xref ref-type="aff" rid="aff1"></xref></contrib>
|
|
23
|
+
<aff id="aff1">School of Hard Knocks, <institution>University of Life</institution>, <addr-line><city>Houston</city>, <state>TX</state></addr-line>, <country>USA</country>.</aff>
|
|
24
|
+
</contrib-group>
|
|
25
|
+
<author-notes><corresp id="cor1"><label>*</label>Correspondence: <email xlink:href="nday@inera.com">nday@inera.com</email>.</corresp>
|
|
26
|
+
<fn id="afn1">
|
|
27
|
+
<label>1</label><p>Author_Footnote.</p></fn>
|
|
28
|
+
<fn fn-type="con">
|
|
29
|
+
<label>Author Contributions</label>
|
|
30
|
+
<p>Author Contibutions are described here.</p></fn>
|
|
31
|
+
<fn id="afn2">
|
|
32
|
+
<p content-type="fn-title">Disclaimer</p>
|
|
33
|
+
<p>This is an unlabelled author footnote with a separate title.</p></fn>
|
|
34
|
+
</author-notes>
|
|
35
|
+
<pub-date pub-type="ppub"><day>05</day><year></year></pub-date>
|
|
36
|
+
<volume></volume>
|
|
37
|
+
<history>
|
|
38
|
+
<date date-type="received"><day>01</day><month>04</month><year>2009</year></date><date date-type="rev-recd"><day>02</day><month>05</month><year>2009</year></date><date date-type="accepted"><day>12</day><month>05</month><year>2009</year></date>
|
|
39
|
+
</history>
|
|
40
|
+
<permissions>
|
|
41
|
+
</permissions>
|
|
42
|
+
<abstract abstract-type="teaser">
|
|
43
|
+
<title>Teaser: Heads up!</title>
|
|
44
|
+
<p>The direct interaction of phenobarbital with the epidermal growth factor receptor reveals a new network interface in nuclear receptor signaling.</p>
|
|
45
|
+
</abstract>
|
|
46
|
+
<abstract>
|
|
47
|
+
<sec><title>Introduction</title><p>This is a sectionalized abstract.</p></sec>
|
|
48
|
+
<sec><title>Results</title><p>These are the results of the experiment.</p></sec>
|
|
49
|
+
</abstract>
|
|
50
|
+
<kwd-group kwd-group-type="author"><title>Keywords: </title><kwd>Paragraphs</kwd><kwd>exporting</kwd><kwd>testing</kwd><kwd>NLM DTD</kwd></kwd-group>
|
|
51
|
+
</article-meta>
|
|
52
|
+
<notes>
|
|
53
|
+
<def-list list-type="simple" list-content="abbreviations"><title>Abbreviations: </title><def-item><term>UK</term><def><p>United Kingdom</p></def></def-item><def-item><term>USA</term><def><p>United States of America</p></def></def-item></def-list>
|
|
54
|
+
</notes>
|
|
55
|
+
</front>
|
|
56
|
+
<body>
|
|
57
|
+
<sec sec-type="intro">
|
|
58
|
+
<title>Introduction</title>
|
|
59
|
+
<sec>
|
|
60
|
+
<title>A level 2 subhead</title>
|
|
61
|
+
<sec>
|
|
62
|
+
<title>A level 3 subhead</title>
|
|
63
|
+
<sec>
|
|
64
|
+
<title>A level 4 subhead</title>
|
|
65
|
+
<sec>
|
|
66
|
+
<title>A level 5 subhead</title>
|
|
67
|
+
<sec sec-type="ethics-statement">
|
|
68
|
+
<title>Ethics statement</title>
|
|
69
|
+
<p>Paragraph, see<xref ref-type="fn" rid="fn1"><sup>1</sup></xref> <xref ref-type="disp-formula" rid="eq1">Equation 1</xref> and <xref ref-type="fig" rid="fig1">Figure 1</xref>.</p>
|
|
70
|
+
<fig id="fig1" position="float" fig-type="half-right"><label>Figure 1</label><caption><p>A picture on the kinds of figures.</p><p>The Fig Caption continues.</p></caption><p>test paragraph</p><graphic xlink:href="123412341234.fig1"></graphic>
|
|
71
|
+
<attrib>Source: Wikipedia.</attrib></fig>
|
|
72
|
+
<fig id="fig1" position="float" fig-type="half-right"><label>Figure 1</label><caption><p>A missing picture on the kinds of figures.</p><p>The Fig Caption continues.</p></caption><p>test paragraph</p><graphic xlink:href="123412341234.fig1" specific-use="MISSING"></graphic>
|
|
73
|
+
<attrib>Source: Wikipedia.</attrib></fig>
|
|
74
|
+
</sec>
|
|
75
|
+
</sec>
|
|
76
|
+
</sec>
|
|
77
|
+
</sec>
|
|
78
|
+
</sec>
|
|
79
|
+
</sec>
|
|
80
|
+
<sec sec-type="materials|methods">
|
|
81
|
+
<title>Materials and Methods</title>
|
|
82
|
+
<p>Some more text</p>
|
|
83
|
+
</sec>
|
|
84
|
+
<sec sec-type="results">
|
|
85
|
+
<title>Results</title>
|
|
86
|
+
<p>Some text that introduces a poem:</p>
|
|
87
|
+
<verse-group>
|
|
88
|
+
<verse-line>Poetry</verse-line>
|
|
89
|
+
<attrib>Source: Wikipedia</attrib>
|
|
90
|
+
</verse-group>
|
|
91
|
+
<p>You might1 peruse, e.g., <xref ref-type="boxed-text" rid="b1">Box 1</xref>. See also <xref ref-type="app" rid="appA">Appendix A</xref>.</p>
|
|
92
|
+
<boxed-text id="b1"><label>Box 1</label><caption><title>Boxed boxes.</title></caption>
|
|
93
|
+
<sec>
|
|
94
|
+
<title>Box_Head_1</title>
|
|
95
|
+
<sec>
|
|
96
|
+
<title>Box_Head_2</title>
|
|
97
|
+
<p>Box_Text<xref ref-type="fn" rid="fn2"><sup>†</sup></xref></p>
|
|
98
|
+
<fn-group>
|
|
99
|
+
<fn>
|
|
100
|
+
<p>Box Note</p></fn>
|
|
101
|
+
</fn-group>
|
|
102
|
+
</sec>
|
|
103
|
+
</sec></boxed-text>
|
|
104
|
+
<p>See also, <xref ref-type="bibr" rid="bib1">Day (2008)</xref> and <xref ref-type="table" rid="tbl1">Table 1</xref>.<table-wrap id="tbl1" position="float">
|
|
105
|
+
<label>Table 1</label><caption><title>Kinds of tables</title>
|
|
106
|
+
<p>This is a table title continued paragraph</p>
|
|
107
|
+
</caption>
|
|
108
|
+
<table frame="hsides" rules="groups">
|
|
109
|
+
<col width="100%"/>
|
|
110
|
+
<thead>
|
|
111
|
+
<tr>
|
|
112
|
+
<th valign="top" align="left" scope="col" style="border-left: solid 0.50pt; border-top: solid 0.50pt; border-right: solid 0.50pt; border-bottom: solid 0.50pt">Table_Head</th>
|
|
113
|
+
</tr>
|
|
114
|
+
</thead>
|
|
115
|
+
<tbody>
|
|
116
|
+
<tr>
|
|
117
|
+
<td valign="top" align="left" style="border-left: solid 0.50pt; border-top: solid 0.50pt; border-right: solid 0.50pt; border-bottom: solid 0.50pt">Table_Body*</td>
|
|
118
|
+
</tr>
|
|
119
|
+
</tbody>
|
|
120
|
+
</table><table-wrap-foot>
|
|
121
|
+
<p>* Table_Footnote</p>
|
|
122
|
+
</table-wrap-foot></table-wrap>
|
|
123
|
+
<disp-quote>
|
|
124
|
+
<p>Block_Quote</p>
|
|
125
|
+
<attrib>Source: Wikipedia</attrib>
|
|
126
|
+
</disp-quote>Paragraph_Continued with a graphic <inline-graphic xlink:href="image1"/> in the middle<disp-formula id="eq1"><mml:math id="m1">
|
|
127
|
+
<mml:mrow>
|
|
128
|
+
<mml:mstyle displaystyle="true">
|
|
129
|
+
<mml:mrow><mml:mo>∫</mml:mo>
|
|
130
|
+
<mml:mrow></mml:mrow>
|
|
131
|
+
</mml:mrow>
|
|
132
|
+
</mml:mstyle><mml:mi>θ</mml:mi><mml:msup>
|
|
133
|
+
<mml:mrow>
|
|
134
|
+
<mml:mi>cos</mml:mi></mml:mrow>
|
|
135
|
+
<mml:mrow>
|
|
136
|
+
<mml:mo>−</mml:mo><mml:mn>1</mml:mn></mml:mrow>
|
|
137
|
+
</mml:msup>
|
|
138
|
+
<mml:mfenced>
|
|
139
|
+
<mml:mrow>
|
|
140
|
+
<mml:mfrac>
|
|
141
|
+
<mml:mi>π</mml:mi>
|
|
142
|
+
<mml:mn>2</mml:mn>
|
|
143
|
+
</mml:mfrac>
|
|
144
|
+
<mml:mo>−</mml:mo><mml:mi>θ</mml:mi></mml:mrow>
|
|
145
|
+
</mml:mfenced></mml:mrow>
|
|
146
|
+
</mml:math><label>(1)</label></disp-formula>where the paragraph continues.</p>
|
|
147
|
+
<statement><label>H<sub>1</sub></label><p>This is a hypothesis.</p></statement>
|
|
148
|
+
<list id="L1" list-type="bullet"><list-item><p>Num_Bul_List_1</p>
|
|
149
|
+
<p>List_1_Continued</p>
|
|
150
|
+
<list id="L2" list-type="bullet"><list-item><p>Num_Bul_List_2</p>
|
|
151
|
+
<p>List_2_Continued</p></list-item></list>
|
|
152
|
+
</list-item><list-item><p>level 1, bullet 2</p></list-item></list>
|
|
153
|
+
</sec>
|
|
154
|
+
<sec sec-type="discussion">
|
|
155
|
+
<title>Discussion</title>
|
|
156
|
+
<p>Paragraph<list id="L3" list-type="simple"><list-item><p>Unnumbered_List_1</p></list-item>
|
|
157
|
+
<list-item><p>Another unnumbered item</p></list-item></list>with another paragraph that continues after a list.</p>
|
|
158
|
+
</sec>
|
|
159
|
+
<sec sec-type="conclusions">
|
|
160
|
+
<title>Conclusions</title>
|
|
161
|
+
<p>Paragraph</p>
|
|
162
|
+
</sec>
|
|
163
|
+
</body>
|
|
164
|
+
<back>
|
|
165
|
+
<app-group>
|
|
166
|
+
<app id="appA"><label>Appendix A</label><title>This is an appendix</title>
|
|
167
|
+
<sec>
|
|
168
|
+
<title>Appendix_Head_1</title>
|
|
169
|
+
<sec>
|
|
170
|
+
<title>Appendix_Head_2</title>
|
|
171
|
+
<p>Appendix_Text</p>
|
|
172
|
+
</sec>
|
|
173
|
+
</sec>
|
|
174
|
+
</app>
|
|
175
|
+
</app-group>
|
|
176
|
+
<ack>
|
|
177
|
+
<title>Acknowledgements</title>
|
|
178
|
+
<p>Acknowledgement</p>
|
|
179
|
+
</ack>
|
|
180
|
+
<fn-group>
|
|
181
|
+
<fn fn-type="conflict">
|
|
182
|
+
<label>Competing Interests</label>
|
|
183
|
+
<p>This is information about Competing Interests.</p></fn>
|
|
184
|
+
<fn fn-type="financial-disclosure">
|
|
185
|
+
<label>Financial Disclosure</label>
|
|
186
|
+
<p>This is a Financial Disclosure.</p></fn>
|
|
187
|
+
</fn-group>
|
|
188
|
+
<sec sec-type="data-availability">
|
|
189
|
+
<title>Data availability</title>
|
|
190
|
+
<p>This is some information about data availability.</p>
|
|
191
|
+
</sec>
|
|
192
|
+
<ref-list>
|
|
193
|
+
<title>References</title>
|
|
194
|
+
<ref id="bib1"><mixed-citation publication-type="journal"><person-group person-group-type="author"><string-name><surname>Day</surname>, <given-names>R.N.</given-names></string-name></person-group> (<year>2008</year>). “<article-title>This is the article title.</article-title>” <source>EDCC</source>, <volume>3</volume>(<issue>2</issue>): <fpage>123</fpage>-<lpage>134</lpage>.</mixed-citation></ref>
|
|
195
|
+
</ref-list>
|
|
196
|
+
<bio>
|
|
197
|
+
<p>Author Biography in a single paragraph.</p>
|
|
198
|
+
</bio>
|
|
199
|
+
<bio>
|
|
200
|
+
<title>Nathan Day</title>
|
|
201
|
+
<p><inline-graphic xlink:href="ArcFullTextParaExportTest-Image001"/></p>
|
|
202
|
+
<p>This is a biography of Nathan Day.</p>
|
|
203
|
+
</bio>
|
|
204
|
+
<fn-group><fn id="fn1">
|
|
205
|
+
<p>This is a footnote.</p></fn><fn id="fn2">
|
|
206
|
+
<p>Footnote called out in a box</p></fn>
|
|
207
|
+
</fn-group>
|
|
208
|
+
</back>
|
|
209
|
+
</article>
|
|
@@ -0,0 +1,156 @@
|
|
|
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">
|
|
4
|
+
<front>
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>A complete manuscript</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
<contrib-group content-type="authors">
|
|
10
|
+
<contrib contrib-type="author" id="MPContributor_975F60A6-2080-451B-A8E3-93F587BF3DEC">
|
|
11
|
+
<name>
|
|
12
|
+
<surname>User</surname>
|
|
13
|
+
<given-names>Developer</given-names>
|
|
14
|
+
</name>
|
|
15
|
+
</contrib>
|
|
16
|
+
</contrib-group>
|
|
17
|
+
<counts>
|
|
18
|
+
<count count-type="box" count="0" />
|
|
19
|
+
<fig-count count="0" />
|
|
20
|
+
<table-count count="0" />
|
|
21
|
+
<equation-count count="0" />
|
|
22
|
+
<ref-count count="2" />
|
|
23
|
+
<word-count count="2910" /></counts>
|
|
24
|
+
</article-meta>
|
|
25
|
+
</front>
|
|
26
|
+
<body>
|
|
27
|
+
<sec id="MPSection_AB23BC7F-F0A3-46FB-AEDD-54405C032E5E">
|
|
28
|
+
<title>Paragraphs</title>
|
|
29
|
+
<p id="MPParagraphElement_5BF50210-0758-40D1-831A-DCD814577FD0">A paragraph.</p>
|
|
30
|
+
</sec>
|
|
31
|
+
<sec id="MPSection_A4926F2B-B6DF-4974-B18F-05FEC8CA8003">
|
|
32
|
+
<title>Lists</title>
|
|
33
|
+
<list list-type="order">
|
|
34
|
+
<list-item>
|
|
35
|
+
<p>An ordered list</p>
|
|
36
|
+
</list-item>
|
|
37
|
+
<list-item>
|
|
38
|
+
<p>With two items</p>
|
|
39
|
+
</list-item>
|
|
40
|
+
</list>
|
|
41
|
+
<list list-type="order">
|
|
42
|
+
<list-item>
|
|
43
|
+
<p>An ordered list</p>
|
|
44
|
+
<list list-type="order">
|
|
45
|
+
<list-item>
|
|
46
|
+
<p>With a nested ordered list</p>
|
|
47
|
+
</list-item>
|
|
48
|
+
<list-item>
|
|
49
|
+
<p>With two items</p>
|
|
50
|
+
</list-item>
|
|
51
|
+
</list>
|
|
52
|
+
</list-item>
|
|
53
|
+
</list>
|
|
54
|
+
<list list-type="bullet">
|
|
55
|
+
<list-item>
|
|
56
|
+
<p>A bullet list</p>
|
|
57
|
+
<list list-type="bullet">
|
|
58
|
+
<list-item>
|
|
59
|
+
<p>With a nested bullet list</p>
|
|
60
|
+
</list-item>
|
|
61
|
+
<list-item>
|
|
62
|
+
<p>With two items</p>
|
|
63
|
+
</list-item>
|
|
64
|
+
</list>
|
|
65
|
+
</list-item>
|
|
66
|
+
</list>
|
|
67
|
+
<list list-type="bullet">
|
|
68
|
+
<list-item>
|
|
69
|
+
<p>A bullet list</p>
|
|
70
|
+
<list list-type="order">
|
|
71
|
+
<list-item>
|
|
72
|
+
<p>With a nested ordered list</p>
|
|
73
|
+
</list-item>
|
|
74
|
+
<list-item>
|
|
75
|
+
<p>With two items</p>
|
|
76
|
+
</list-item>
|
|
77
|
+
</list>
|
|
78
|
+
</list-item>
|
|
79
|
+
</list>
|
|
80
|
+
</sec>
|
|
81
|
+
<sec id="MPSection_2E0A7E51-F531-47C3-B585-AA86506D3DE4">
|
|
82
|
+
<title>Figures</title>
|
|
83
|
+
<fig id="MPFigure_035B52CA-C486-4AC1-B44E-40F36F422686">
|
|
84
|
+
<caption>
|
|
85
|
+
<p>Test</p>
|
|
86
|
+
</caption>
|
|
87
|
+
<graphic xlink:href="graphic/MPFigure_035B52CA-C486-4AC1-B44E-40F36F422686.jpeg" content-type="half-right" />
|
|
88
|
+
</fig>
|
|
89
|
+
</sec>
|
|
90
|
+
<sec id="MPSection_66B42418-3457-4116-96F1-667D17CBA813">
|
|
91
|
+
<title>Tables</title>
|
|
92
|
+
<table-wrap id="MPTableElement_ED394766-2934-4B28-AEFE-EAF97D90D854">
|
|
93
|
+
<caption>
|
|
94
|
+
<p>Test</p>
|
|
95
|
+
</caption>
|
|
96
|
+
<table id="MPTable_2E556F94-DB53-413B-8592-58358A8DD8DD">
|
|
97
|
+
<thead>
|
|
98
|
+
<tr>
|
|
99
|
+
<td>Test</td>
|
|
100
|
+
<td>Test</td>
|
|
101
|
+
</tr>
|
|
102
|
+
</thead>
|
|
103
|
+
<tfoot>
|
|
104
|
+
<tr>
|
|
105
|
+
<td>Test</td>
|
|
106
|
+
<td />
|
|
107
|
+
</tr>
|
|
108
|
+
</tfoot>
|
|
109
|
+
<tbody>
|
|
110
|
+
<tr>
|
|
111
|
+
<td>Test</td>
|
|
112
|
+
<td />
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td />
|
|
116
|
+
<td>Test</td>
|
|
117
|
+
</tr>
|
|
118
|
+
</tbody>
|
|
119
|
+
</table>
|
|
120
|
+
</table-wrap>
|
|
121
|
+
</sec>
|
|
122
|
+
<sec id="MPSection_61643B99-F34D-46E2-8772-563BC4A7DDB6">
|
|
123
|
+
<title>Equations</title>
|
|
124
|
+
<p id="MPParagraphElement_A868D3F9-3F1A-4DA3-BE74-AEF9998A952F">This paragraph contains an inline equation:<inline-formula><tex-math>2+3=5</tex-math></inline-formula></p>
|
|
125
|
+
<fig id="MPEquationElement_0F637C49-DE6C-4702-974D-5016EC132A1A" fig-type="equation">
|
|
126
|
+
<disp-formula id="MPEquation_ED92F6D4-52EF-4C70-8C11-4F233B96D126">
|
|
127
|
+
<tex-math>E=mc^2</tex-math>
|
|
128
|
+
</disp-formula>
|
|
129
|
+
</fig>
|
|
130
|
+
</sec>
|
|
131
|
+
<sec id="MPSection_27394269-1EB9-47B0-B3F2-11657319C5E1">
|
|
132
|
+
<title>Listings</title>
|
|
133
|
+
<fig id="MPListingElement_6FC7712B-85CE-45D9-A6E7-EB2C48CD0F37" fig-type="listing">
|
|
134
|
+
<code id="MPListing_80FBEC35-C062-4351-A7E6-0515E9D3837D" language="javascript">2+3=5</code>
|
|
135
|
+
</fig>
|
|
136
|
+
</sec>
|
|
137
|
+
<sec id="MPSection_DBCB444D-2469-4EE4-AD80-49AA2E59FC0E">
|
|
138
|
+
<title>Inline</title>
|
|
139
|
+
<p id="MPParagraphElement_94310CD9-4A4B-4F98-9D92-DA957E862DA3">This paragraph contains <bold>bold</bold>, <italic>italic</italic>, <underline>underlined</underline>, <sup>superscript</sup> and <sub>subscript</sub> text.</p>
|
|
140
|
+
<p id="MPParagraphElement_8783E7FC-D562-479A-9BA2-61C6DCD31F35">This paragraph contains <ext-link ext-link-type="uri" xlink:href="https://example.com">a link</ext-link>.</p>
|
|
141
|
+
</sec>
|
|
142
|
+
<sec id="MPSection_15F7949D-0FC4-4EE9-BF35-F9BCB62ED54B">
|
|
143
|
+
<title>Quotes</title>
|
|
144
|
+
<disp-quote content-type="quote">
|
|
145
|
+
<p>This is a block quote.</p>
|
|
146
|
+
<attrib>It came from here.</attrib>
|
|
147
|
+
</disp-quote>
|
|
148
|
+
</sec>
|
|
149
|
+
<sec id="MPSection_A8F4E48A-32A4-4702-814C-F18D2A434EBB">
|
|
150
|
+
<title>Citations</title>
|
|
151
|
+
<p id="MPParagraphElement_3EF4BE66-BFE5-4BB4-A9B8-17130F9B3CA1">This paragraph ends with a citation.<xref ref-type="bibr" rid="MPBibliographyItem_787BD4C1-3074-4076-9707-0227D29C1F10">1</xref></p>
|
|
152
|
+
<p id="MPParagraphElement_51B71DB6-30CC-4273-9975-EA03E3244C8B">This paragraph ends with two citations.<xref ref-type="bibr" rid="MPBibliographyItem_E9EFF971-4380-4DEB-83CF-B0CAA6C32BDF MPBibliographyItem_36EDAD5A-EBA0-47AE-88E6-EBAD385166AE">2,3</xref></p>
|
|
153
|
+
<p id="MPParagraphElement_6887297E-F834-4F1E-9BC2-0C47F551541B">This paragraph ends with all three citations.<xref ref-type="bibr" rid="MPBibliographyItem_787BD4C1-3074-4076-9707-0227D29C1F10 MPBibliographyItem_36EDAD5A-EBA0-47AE-88E6-EBAD385166AE MPBibliographyItem_E9EFF971-4380-4DEB-83CF-B0CAA6C32BDF">1–3</xref></p>
|
|
154
|
+
</sec>
|
|
155
|
+
</body>
|
|
156
|
+
</article>
|
|
@@ -0,0 +1,91 @@
|
|
|
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">
|
|
4
|
+
<front>
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>A complete manuscript</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
<contrib-group content-type="authors">
|
|
10
|
+
<contrib contrib-type="author" id="MPContributor_975F60A6-2080-451B-A8E3-93F587BF3DEC">
|
|
11
|
+
<name>
|
|
12
|
+
<surname>User</surname>
|
|
13
|
+
<given-names>Developer</given-names>
|
|
14
|
+
</name>
|
|
15
|
+
</contrib>
|
|
16
|
+
</contrib-group>
|
|
17
|
+
<counts>
|
|
18
|
+
<count count-type="box" count="0" />
|
|
19
|
+
<fig-count count="0" />
|
|
20
|
+
<table-count count="0" />
|
|
21
|
+
<equation-count count="0" />
|
|
22
|
+
<ref-count count="2" />
|
|
23
|
+
<word-count count="2910" /></counts>
|
|
24
|
+
</article-meta>
|
|
25
|
+
</front>
|
|
26
|
+
<back>
|
|
27
|
+
<ref-list id="MPSection_A83F9050-B6E5-4587-863B-2BD9F6D788FE">
|
|
28
|
+
<title>Bibliography</title>
|
|
29
|
+
<ref id="MPBibliographyItem_787BD4C1-3074-4076-9707-0227D29C1F10">
|
|
30
|
+
<element-citation publication-type="journal">
|
|
31
|
+
<name>
|
|
32
|
+
<surname>Case</surname>
|
|
33
|
+
<given-names>Nat</given-names>
|
|
34
|
+
</name>
|
|
35
|
+
<article-title>Creating Graphically Complex Indexes With InDesign</article-title>
|
|
36
|
+
<source>Cartographic Perspectives</source>
|
|
37
|
+
<issue>62</issue>
|
|
38
|
+
<fpage>52</fpage>
|
|
39
|
+
<lpage>54</lpage>
|
|
40
|
+
<year>2009</year>
|
|
41
|
+
<month>3</month>
|
|
42
|
+
<day>1</day>
|
|
43
|
+
</element-citation>
|
|
44
|
+
</ref>
|
|
45
|
+
<ref id="MPBibliographyItem_E9EFF971-4380-4DEB-83CF-B0CAA6C32BDF">
|
|
46
|
+
<element-citation publication-type="journal">
|
|
47
|
+
<article-title>Technique for extracting reusable XML Schema from schema-less XML Documents</article-title>
|
|
48
|
+
<source>The KIPS Transactions:PartD</source>
|
|
49
|
+
<volume>10D</volume>
|
|
50
|
+
<issue>4</issue>
|
|
51
|
+
<fpage>603</fpage>
|
|
52
|
+
<lpage>612</lpage>
|
|
53
|
+
<year>2003</year>
|
|
54
|
+
<month>8</month>
|
|
55
|
+
<day>1</day>
|
|
56
|
+
</element-citation>
|
|
57
|
+
</ref>
|
|
58
|
+
<ref id="MPBibliographyItem_36EDAD5A-EBA0-47AE-88E6-EBAD385166AE">
|
|
59
|
+
<element-citation publication-type="journal">
|
|
60
|
+
<name>
|
|
61
|
+
<surname>Kim</surname>
|
|
62
|
+
<given-names>Jin</given-names>
|
|
63
|
+
</name>
|
|
64
|
+
<name>
|
|
65
|
+
<surname>Kang</surname>
|
|
66
|
+
<given-names>Hyun-Chul</given-names>
|
|
67
|
+
</name>
|
|
68
|
+
<article-title>XML Fragmentation for Resource-Efficient Query Processing over XML Fragment Stream</article-title>
|
|
69
|
+
<source>The KIPS Transactions:PartD</source>
|
|
70
|
+
<volume>16D</volume>
|
|
71
|
+
<issue>1</issue>
|
|
72
|
+
<fpage>27</fpage>
|
|
73
|
+
<lpage>42</lpage>
|
|
74
|
+
<year>2009</year>
|
|
75
|
+
<month>2</month>
|
|
76
|
+
<day>28</day>
|
|
77
|
+
</element-citation>
|
|
78
|
+
</ref>
|
|
79
|
+
</ref-list>
|
|
80
|
+
<fn-group>
|
|
81
|
+
<fn fn-type="conflict">
|
|
82
|
+
<p content-type="fn-title">CONFLICT OF INTEREST</p>
|
|
83
|
+
<p>No conflicts of interest have been declared.</p>
|
|
84
|
+
</fn>
|
|
85
|
+
<fn fn-type="financial-disclosure">
|
|
86
|
+
<p content-type="fn-title">FUNDING INFORMATION</p>
|
|
87
|
+
<p>This work was supported by the National Natural Science Foundation of China (81771439), Jiangsu Provincial Key Research and Development Program (BE2020661 and BE2018662), Jiangsu Provincial Health Commission Science Research Program (QNRC2016228, H2019056 and LGY2018010), Jiangsu Provincial Six Talent Peaks Project (WSN-165), Suzhou Municipal Health Commission Science Research Program (SZYJTD201715, LCZX201820, Kjxw2018048 and Gwzx201801), Suzhou Municipal Sci-Tech Bureau Program (SZS201722, SS201706, SYS2019113 and SS2019009), and CAS Key Laboratory of Mental Health, Institute of Psychology (KLMH2019K03).</p>
|
|
88
|
+
</fn>
|
|
89
|
+
</fn-group>
|
|
90
|
+
</back>
|
|
91
|
+
</article>
|