@amermathsoc/texml-to-html 18.0.0 → 18.2.0
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/CHANGELOG.md +30 -0
- package/README.md +4 -2
- package/lib/elements/abstract.js +1 -0
- package/lib/elements/app.js +2 -1
- package/lib/elements/attrib.js +2 -17
- package/lib/elements/book-meta-json.js +1 -1
- package/lib/elements/disp-formula-group.js +7 -0
- package/lib/elements/disp-quote.js +6 -3
- package/lib/elements/fig.js +7 -2
- package/lib/elements/formula.js +1 -2
- package/lib/elements/label.js +5 -49
- package/lib/elements/notes.js +1 -0
- package/lib/elements/ref-list.js +1 -1
- package/lib/elements/sec.js +4 -1
- package/lib/elements/secheading.js +3 -2
- package/lib/elements/statement.js +11 -0
- package/lib/elements/subtitle.js +1 -4
- package/lib/elements/tag.js +2 -2
- package/lib/elements/target.js +3 -6
- package/lib/elements/{subject.js → title-group.js} +3 -5
- package/lib/head.js +1 -1
- package/lib/postProcessing.js +81 -0
- package/lib/transformer.js +44 -14
- package/package.json +3 -1
- package/test/article.xml +40 -33
- package/test/book.xml +30 -7
- package/test/element-attrib.js +2 -2
- package/test/element-disp-quote.js +2 -1
- package/test/element-fig-subfig-label.js +2 -1
- package/test/element-fn.js +6 -3
- package/test/element-formula.js +63 -0
- package/test/element-front.js +2 -1
- package/test/{element-sec-app-front-matter-part-dedication-title-label.js → element-sec.js} +3 -1
- package/test/element-tag.js +5 -1
- package/test/element-tex-math.js +64 -0
- package/test/helper.js +4 -0
- package/test/postProcessing.js +45 -0
- package/test/snapshots/article--alttitle.html +121 -0
- package/test/snapshots/article--nometa.html +56 -0
- package/test/snapshots/article.html +561 -0
- package/test/snapshots/book.html +160 -0
- package/test/snapshots/texml-tests/LGR.html +104 -0
- package/test/snapshots/texml-tests/LGR.xml +82 -0
- package/test/snapshots/texml-tests/NLMnote.html +10 -0
- package/test/snapshots/texml-tests/NLMnote.xml +12 -0
- package/test/snapshots/texml-tests/OT1.html +61 -0
- package/test/snapshots/texml-tests/OT1.xml +39 -0
- package/test/snapshots/texml-tests/OT1ti.html +61 -0
- package/test/snapshots/texml-tests/OT1ti.xml +39 -0
- package/test/snapshots/texml-tests/OT1tt.html +60 -0
- package/test/snapshots/texml-tests/OT1tt.xml +38 -0
- package/test/snapshots/texml-tests/OT2.html +119 -0
- package/test/snapshots/texml-tests/OT2.xml +97 -0
- package/test/snapshots/texml-tests/OT4.html +68 -0
- package/test/snapshots/texml-tests/OT4.xml +46 -0
- package/test/snapshots/texml-tests/OT6.html +49 -0
- package/test/snapshots/texml-tests/OT6.xml +27 -0
- package/test/snapshots/texml-tests/T1.html +44 -0
- package/test/snapshots/texml-tests/T1.xml +22 -0
- package/test/snapshots/texml-tests/T4.html +48 -0
- package/test/snapshots/texml-tests/T4.xml +26 -0
- package/test/snapshots/texml-tests/T5.html +45 -0
- package/test/snapshots/texml-tests/T5.xml +23 -0
- package/test/snapshots/texml-tests/Uchar.html +9 -0
- package/test/snapshots/texml-tests/Uchar.xml +11 -0
- package/test/snapshots/texml-tests/Ucharcat.html +45 -0
- package/test/snapshots/texml-tests/Ucharcat.xml +23 -0
- package/test/snapshots/texml-tests/accent.html +54 -0
- package/test/snapshots/texml-tests/accent.xml +32 -0
- package/test/snapshots/texml-tests/algorithm.html +55 -0
- package/test/snapshots/texml-tests/algorithm.xml +35 -0
- package/test/snapshots/texml-tests/algorithmic.html +706 -0
- package/test/snapshots/texml-tests/algorithmic.xml +712 -0
- package/test/snapshots/texml-tests/algpseudocode.html +520 -0
- package/test/snapshots/texml-tests/algpseudocode.xml +538 -0
- package/test/snapshots/texml-tests/ams_measure.html +46 -0
- package/test/snapshots/texml-tests/ams_measure.xml +24 -0
- package/test/snapshots/texml-tests/amsart.html +66 -0
- package/test/snapshots/texml-tests/amsart.xml +39 -0
- package/test/snapshots/texml-tests/amscyr.html +53 -0
- package/test/snapshots/texml-tests/amscyr.xml +35 -0
- package/test/snapshots/texml-tests/amsfonts.html +41 -0
- package/test/snapshots/texml-tests/amsfonts.xml +21 -0
- package/test/snapshots/texml-tests/amsrefs.html +82 -0
- package/test/snapshots/texml-tests/amsrefs.xml +87 -0
- package/test/snapshots/texml-tests/amsthm.html +83 -0
- package/test/snapshots/texml-tests/amsthm.xml +61 -0
- package/test/snapshots/texml-tests/amsviet.html +42 -0
- package/test/snapshots/texml-tests/amsviet.xml +20 -0
- package/test/snapshots/texml-tests/appendix.html +69 -0
- package/test/snapshots/texml-tests/appendix.xml +43 -0
- package/test/snapshots/texml-tests/array.html +58 -0
- package/test/snapshots/texml-tests/array.xml +36 -0
- package/test/snapshots/texml-tests/arydshln.html +69 -0
- package/test/snapshots/texml-tests/arydshln.xml +47 -0
- package/test/snapshots/texml-tests/autoref.html +76 -0
- package/test/snapshots/texml-tests/autoref.xml +79 -0
- package/test/snapshots/texml-tests/begincsname.html +46 -0
- package/test/snapshots/texml-tests/begincsname.xml +24 -0
- package/test/snapshots/texml-tests/boldline.html +93 -0
- package/test/snapshots/texml-tests/boldline.xml +71 -0
- package/test/snapshots/texml-tests/book-app.html +22 -0
- package/test/snapshots/texml-tests/book-app.xml +26 -0
- package/test/snapshots/texml-tests/booktabs.html +7 -0
- package/test/snapshots/texml-tests/booktabs.xml +9 -0
- package/test/snapshots/texml-tests/boxes.html +54 -0
- package/test/snapshots/texml-tests/boxes.xml +32 -0
- package/test/snapshots/texml-tests/cases.html +13 -0
- package/test/snapshots/texml-tests/cases.xml +19 -0
- package/test/snapshots/texml-tests/cite.html +48 -0
- package/test/snapshots/texml-tests/cite.xml +40 -0
- package/test/snapshots/texml-tests/citesort.html +62 -0
- package/test/snapshots/texml-tests/citesort.xml +74 -0
- package/test/snapshots/texml-tests/cleveref.html +25 -0
- package/test/snapshots/texml-tests/cleveref.xml +28 -0
- package/test/snapshots/texml-tests/codes.html +7 -0
- package/test/snapshots/texml-tests/codes.xml +9 -0
- package/test/snapshots/texml-tests/colortbl.html +46 -0
- package/test/snapshots/texml-tests/colortbl.xml +24 -0
- package/test/snapshots/texml-tests/combinetoks.html +49 -0
- package/test/snapshots/texml-tests/combinetoks.xml +27 -0
- package/test/snapshots/texml-tests/constants.html +45 -0
- package/test/snapshots/texml-tests/constants.xml +23 -0
- package/test/snapshots/texml-tests/csstring.html +44 -0
- package/test/snapshots/texml-tests/csstring.xml +22 -0
- package/test/snapshots/texml-tests/detokenize.html +56 -0
- package/test/snapshots/texml-tests/detokenize.xml +34 -0
- package/test/snapshots/texml-tests/diacritics.html +41 -0
- package/test/snapshots/texml-tests/diacritics.xml +19 -0
- package/test/snapshots/texml-tests/dimexpr.html +42 -0
- package/test/snapshots/texml-tests/dimexpr.xml +20 -0
- package/test/snapshots/texml-tests/doi.html +6 -0
- package/test/snapshots/texml-tests/doi.xml +8 -0
- package/test/snapshots/texml-tests/drm.html +12 -0
- package/test/snapshots/texml-tests/drm.xml +76 -0
- package/test/snapshots/texml-tests/dz.html +25 -0
- package/test/snapshots/texml-tests/dz.xml +27 -0
- package/test/snapshots/texml-tests/edef.html +8 -0
- package/test/snapshots/texml-tests/edef.xml +10 -0
- package/test/snapshots/texml-tests/empheq.html +9 -0
- package/test/snapshots/texml-tests/empheq.xml +13 -0
- package/test/snapshots/texml-tests/enclose.html +27 -0
- package/test/snapshots/texml-tests/enclose.xml +45 -0
- package/test/snapshots/texml-tests/everyeof.html +42 -0
- package/test/snapshots/texml-tests/everyeof.xml +20 -0
- package/test/snapshots/texml-tests/expanded.html +44 -0
- package/test/snapshots/texml-tests/expanded.xml +22 -0
- package/test/snapshots/texml-tests/footnote.html +28 -0
- package/test/snapshots/texml-tests/footnote.xml +59 -0
- package/test/snapshots/texml-tests/frac.html +15 -0
- package/test/snapshots/texml-tests/frac.xml +21 -0
- package/test/snapshots/texml-tests/framebox.html +43 -0
- package/test/snapshots/texml-tests/framebox.xml +23 -0
- package/test/snapshots/texml-tests/glueexpr.html +42 -0
- package/test/snapshots/texml-tests/glueexpr.xml +20 -0
- package/test/snapshots/texml-tests/graphics.html +9 -0
- package/test/snapshots/texml-tests/graphics.xml +13 -0
- package/test/snapshots/texml-tests/gsm_l.html +35 -0
- package/test/snapshots/texml-tests/gsm_l.xml +71 -0
- package/test/snapshots/texml-tests/halign.html +78 -0
- package/test/snapshots/texml-tests/halign.xml +56 -0
- package/test/snapshots/texml-tests/hbox.html +11 -0
- package/test/snapshots/texml-tests/hbox.xml +17 -0
- package/test/snapshots/texml-tests/hello.html +38 -0
- package/test/snapshots/texml-tests/hello.xml +16 -0
- package/test/snapshots/texml-tests/hhline.html +101 -0
- package/test/snapshots/texml-tests/hhline.xml +79 -0
- package/test/snapshots/texml-tests/hline.html +40 -0
- package/test/snapshots/texml-tests/hline.xml +18 -0
- package/test/snapshots/texml-tests/href.html +6 -0
- package/test/snapshots/texml-tests/href.xml +8 -0
- package/test/snapshots/texml-tests/hyperams.html +43 -0
- package/test/snapshots/texml-tests/hyperams.xml +21 -0
- package/test/snapshots/texml-tests/hyperref.html +10 -0
- package/test/snapshots/texml-tests/hyperref.xml +12 -0
- package/test/snapshots/texml-tests/ifcondition.html +39 -0
- package/test/snapshots/texml-tests/ifcondition.xml +17 -0
- package/test/snapshots/texml-tests/ifcsname.html +40 -0
- package/test/snapshots/texml-tests/ifcsname.xml +18 -0
- package/test/snapshots/texml-tests/ifdefined.html +40 -0
- package/test/snapshots/texml-tests/ifdefined.xml +18 -0
- package/test/snapshots/texml-tests/ifdim.html +40 -0
- package/test/snapshots/texml-tests/ifdim.xml +18 -0
- package/test/snapshots/texml-tests/ifnum.html +40 -0
- package/test/snapshots/texml-tests/ifnum.xml +18 -0
- package/test/snapshots/texml-tests/ifprimitive.html +48 -0
- package/test/snapshots/texml-tests/ifprimitive.xml +26 -0
- package/test/snapshots/texml-tests/immediateassigned.html +44 -0
- package/test/snapshots/texml-tests/immediateassigned.xml +22 -0
- package/test/snapshots/texml-tests/immediateassignment.html +44 -0
- package/test/snapshots/texml-tests/immediateassignment.xml +22 -0
- package/test/snapshots/texml-tests/lastbox.html +40 -0
- package/test/snapshots/texml-tests/lastbox.xml +18 -0
- package/test/snapshots/texml-tests/lastnamedcs.html +40 -0
- package/test/snapshots/texml-tests/lastnamedcs.xml +18 -0
- package/test/snapshots/texml-tests/let.html +43 -0
- package/test/snapshots/texml-tests/let.xml +21 -0
- package/test/snapshots/texml-tests/letcharcode.html +41 -0
- package/test/snapshots/texml-tests/letcharcode.xml +19 -0
- package/test/snapshots/texml-tests/ligatures.html +69 -0
- package/test/snapshots/texml-tests/ligatures.xml +47 -0
- package/test/snapshots/texml-tests/list.html +12 -0
- package/test/snapshots/texml-tests/list.xml +14 -0
- package/test/snapshots/texml-tests/listings.html +46 -0
- package/test/snapshots/texml-tests/listings.xml +24 -0
- package/test/snapshots/texml-tests/longtable.html +61 -0
- package/test/snapshots/texml-tests/longtable.xml +39 -0
- package/test/snapshots/texml-tests/ltxcodes.html +1330 -0
- package/test/snapshots/texml-tests/ltxcodes.xml +1332 -0
- package/test/snapshots/texml-tests/ltxthm.html +6 -0
- package/test/snapshots/texml-tests/ltxthm.xml +8 -0
- package/test/snapshots/texml-tests/makecell.html +40 -0
- package/test/snapshots/texml-tests/makecell.xml +18 -0
- package/test/snapshots/texml-tests/maketitle.html +82 -0
- package/test/snapshots/texml-tests/maketitle.xml +67 -0
- package/test/snapshots/texml-tests/math.html +35 -0
- package/test/snapshots/texml-tests/math.xml +47 -0
- package/test/snapshots/texml-tests/mathscinet.html +41 -0
- package/test/snapshots/texml-tests/mathscinet.xml +19 -0
- package/test/snapshots/texml-tests/meaning.html +44 -0
- package/test/snapshots/texml-tests/meaning.xml +22 -0
- package/test/snapshots/texml-tests/metadata.html +125 -0
- package/test/snapshots/texml-tests/metadata.xml +137 -0
- package/test/snapshots/texml-tests/missingfile.html +3 -0
- package/test/snapshots/texml-tests/missingfile.xml +5 -0
- package/test/snapshots/texml-tests/muexpr.html +42 -0
- package/test/snapshots/texml-tests/muexpr.xml +20 -0
- package/test/snapshots/texml-tests/multicolumn.html +47 -0
- package/test/snapshots/texml-tests/multicolumn.xml +25 -0
- package/test/snapshots/texml-tests/multirow.html +47 -0
- package/test/snapshots/texml-tests/multirow.xml +25 -0
- package/test/snapshots/texml-tests/multirowcell.html +50 -0
- package/test/snapshots/texml-tests/multirowcell.xml +28 -0
- package/test/snapshots/texml-tests/multline.html +71 -0
- package/test/snapshots/texml-tests/multline.xml +55 -0
- package/test/snapshots/texml-tests/nameref.html +45 -0
- package/test/snapshots/texml-tests/nameref.xml +23 -0
- package/test/snapshots/texml-tests/noexpand.html +44 -0
- package/test/snapshots/texml-tests/noexpand.xml +22 -0
- package/test/snapshots/texml-tests/noindent.html +39 -0
- package/test/snapshots/texml-tests/noindent.xml +17 -0
- package/test/snapshots/texml-tests/null_cs.html +4 -0
- package/test/snapshots/texml-tests/null_cs.xml +6 -0
- package/test/snapshots/texml-tests/numexpr.html +48 -0
- package/test/snapshots/texml-tests/numexpr.xml +26 -0
- package/test/snapshots/texml-tests/parshape.html +41 -0
- package/test/snapshots/texml-tests/parshape.xml +19 -0
- package/test/snapshots/texml-tests/protected.html +47 -0
- package/test/snapshots/texml-tests/protected.xml +25 -0
- package/test/snapshots/texml-tests/quote.html +43 -0
- package/test/snapshots/texml-tests/quote.xml +21 -0
- package/test/snapshots/texml-tests/read.html +13 -0
- package/test/snapshots/texml-tests/read.xml +15 -0
- package/test/snapshots/texml-tests/refrange.html +126 -0
- package/test/snapshots/texml-tests/refrange.xml +110 -0
- package/test/snapshots/texml-tests/scantokens.html +45 -0
- package/test/snapshots/texml-tests/scantokens.xml +23 -0
- package/test/snapshots/texml-tests/secmeta.html +27 -0
- package/test/snapshots/texml-tests/secmeta.xml +39 -0
- package/test/snapshots/texml-tests/section.html +86 -0
- package/test/snapshots/texml-tests/section.xml +64 -0
- package/test/snapshots/texml-tests/showonlyrefs.html +95 -0
- package/test/snapshots/texml-tests/showonlyrefs.xml +85 -0
- package/test/snapshots/texml-tests/smash.html +41 -0
- package/test/snapshots/texml-tests/smash.xml +21 -0
- package/test/snapshots/texml-tests/strcmp.html +41 -0
- package/test/snapshots/texml-tests/strcmp.xml +19 -0
- package/test/snapshots/texml-tests/string.html +44 -0
- package/test/snapshots/texml-tests/string.xml +22 -0
- package/test/snapshots/texml-tests/sub_sup.html +50 -0
- package/test/snapshots/texml-tests/sub_sup.xml +28 -0
- package/test/snapshots/texml-tests/subcaption.html +54 -0
- package/test/snapshots/texml-tests/subcaption.xml +32 -0
- package/test/snapshots/texml-tests/subfig.html +45 -0
- package/test/snapshots/texml-tests/subfig.xml +23 -0
- package/test/snapshots/texml-tests/subfigure.html +44 -0
- package/test/snapshots/texml-tests/subfigure.xml +22 -0
- package/test/snapshots/texml-tests/tableofcontents.html +42 -0
- package/test/snapshots/texml-tests/tableofcontents.xml +95 -0
- package/test/snapshots/texml-tests/tabular.html +47 -0
- package/test/snapshots/texml-tests/tabular.xml +25 -0
- package/test/snapshots/texml-tests/tag.html +16 -0
- package/test/snapshots/texml-tests/tag.xml +20 -0
- package/test/snapshots/texml-tests/tcolorbox.html +43 -0
- package/test/snapshots/texml-tests/tcolorbox.xml +21 -0
- package/test/snapshots/texml-tests/textequation.html +55 -0
- package/test/snapshots/texml-tests/textequation.xml +33 -0
- package/test/snapshots/texml-tests/thm-restate.html +94 -0
- package/test/snapshots/texml-tests/thm-restate.xml +86 -0
- package/test/snapshots/texml-tests/tracingnodes.html +38 -0
- package/test/snapshots/texml-tests/tracingnodes.xml +16 -0
- package/test/snapshots/texml-tests/unexpanded.html +44 -0
- package/test/snapshots/texml-tests/unexpanded.xml +22 -0
- package/test/snapshots/texml-tests/unless.html +40 -0
- package/test/snapshots/texml-tests/unless.xml +18 -0
- package/test/snapshots/texml-tests/upgreek.html +79 -0
- package/test/snapshots/texml-tests/upgreek.xml +57 -0
- package/test/snapshots/texml-tests/uri.html +12 -0
- package/test/snapshots/texml-tests/uri.xml +14 -0
- package/test/snapshots/texml-tests/url.html +41 -0
- package/test/snapshots/texml-tests/url.xml +19 -0
- package/test/snapshots/texml-tests/vlist.html +48 -0
- package/test/snapshots/texml-tests/vlist.xml +28 -0
- package/test/snapshots/texml-tests/xcolor.html +50 -0
- package/test/snapshots/texml-tests/xcolor.xml +28 -0
- package/test/snapshots/updateTexmlSnapshots.js +14 -0
- package/texml-to-html.js +2 -2
- package/lib/elements/article-title.js +0 -26
- package/lib/elements/book-title.js +0 -26
- package/lib/elements/meta-name.js +0 -29
- package/lib/elements/meta-value.js +0 -27
- package/lib/elements/subj-group.js +0 -29
- package/lib/hacks.js +0 -43
- package/out.html +0 -696
- package/out2.html +0 -707
- package/test/element-inline-formula-disp-formula-tex-math.js +0 -98
- package/test/hacks.js +0 -39
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>Sample article</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "Sample article",
|
|
4
|
+
"alttitle": "Sample article",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {
|
|
14
|
+
"authors": [
|
|
15
|
+
{
|
|
16
|
+
"name": "Jane Doe",
|
|
17
|
+
"bio": "",
|
|
18
|
+
"affiliations": [],
|
|
19
|
+
"emails": [
|
|
20
|
+
"jane.doe@nowhere"
|
|
21
|
+
],
|
|
22
|
+
"mrauth": "MR author id",
|
|
23
|
+
"orcid": "ORCID id",
|
|
24
|
+
"uri": "https://www.ams.org/"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "John Bull",
|
|
28
|
+
"bio": "",
|
|
29
|
+
"affiliations": [],
|
|
30
|
+
"emails": [
|
|
31
|
+
"john.bull@nowhere"
|
|
32
|
+
],
|
|
33
|
+
"uri": "https://www.ams.org/"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"permissions": {},
|
|
38
|
+
"journal": {
|
|
39
|
+
"identifiers": {
|
|
40
|
+
"AMS": {},
|
|
41
|
+
"issn": {
|
|
42
|
+
"print": "",
|
|
43
|
+
"electronic": ""
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"customMeta": {},
|
|
48
|
+
"categories": {},
|
|
49
|
+
"byline": "Jane Doe and John Bull",
|
|
50
|
+
"volumeInfo": {},
|
|
51
|
+
"history": {
|
|
52
|
+
"rev-recd": []
|
|
53
|
+
},
|
|
54
|
+
"keywords": []
|
|
55
|
+
}</script><h1>Sample article</h1><section role="doc-abstract" data-ams-doc-level="1"><h2><span data-ams-doc="title">Abstract<ams-x>.</ams-x></span></h2>
|
|
56
|
+
|
|
57
|
+
<p>Abstract text goes here.</p>
|
|
58
|
+
</section></section>
|
|
59
|
+
|
|
60
|
+
<section role="doc-introduction" id="ltxid3" data-ams-doc="section" data-ams-doc-level="1"><h2><span data-ams-doc="label">1<ams-x>.</ams-x></span> <span data-ams-doc="title">Introduction</span></h2>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<p>Here is some text.</p>
|
|
64
|
+
</section>
|
|
65
|
+
|
|
66
|
+
</section></body></html>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>Sample article</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
<contrib-group content-type="authors">
|
|
10
|
+
<contrib contrib-type="author">
|
|
11
|
+
<string-name>Jane Doe</string-name>
|
|
12
|
+
<contrib-id contrib-id-type="orcid">ORCID id</contrib-id>
|
|
13
|
+
<contrib-id contrib-id-type="mrauth">MR author id</contrib-id>
|
|
14
|
+
<aff>First author’s address</aff>
|
|
15
|
+
<aff specific-use="current">First author’s current address</aff>
|
|
16
|
+
<email>jane.doe@nowhere</email>
|
|
17
|
+
<uri>https://www.ams.org/</uri>
|
|
18
|
+
</contrib>
|
|
19
|
+
<contrib contrib-type="author">
|
|
20
|
+
<string-name>John Bull</string-name>
|
|
21
|
+
<aff>Second author’s address</aff>
|
|
22
|
+
<email>john.bull@nowhere</email>
|
|
23
|
+
<uri>https://www.ams.org/</uri>
|
|
24
|
+
</contrib>
|
|
25
|
+
</contrib-group>
|
|
26
|
+
<abstract>
|
|
27
|
+
<title>Abstract<x>.</x></title>
|
|
28
|
+
<p>Abstract text goes here.</p>
|
|
29
|
+
</abstract>
|
|
30
|
+
</article-meta>
|
|
31
|
+
</front>
|
|
32
|
+
<body id="ltxid2">
|
|
33
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
34
|
+
<label>1<x>.</x></label>
|
|
35
|
+
<title>Introduction</title>
|
|
36
|
+
<p>Here is some text.</p>
|
|
37
|
+
</sec>
|
|
38
|
+
</body>
|
|
39
|
+
</article>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>hello</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "hello",
|
|
4
|
+
"alttitle": "hello",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {},
|
|
14
|
+
"permissions": {},
|
|
15
|
+
"journal": {
|
|
16
|
+
"identifiers": {
|
|
17
|
+
"AMS": {},
|
|
18
|
+
"issn": {
|
|
19
|
+
"print": "",
|
|
20
|
+
"electronic": ""
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"customMeta": {},
|
|
25
|
+
"categories": {},
|
|
26
|
+
"byline": "",
|
|
27
|
+
"volumeInfo": {},
|
|
28
|
+
"history": {
|
|
29
|
+
"rev-recd": []
|
|
30
|
+
},
|
|
31
|
+
"keywords": []
|
|
32
|
+
}</script><h1>hello</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p>cprime: ь</p>
|
|
37
|
+
<p>Cprime: Ь</p>
|
|
38
|
+
<p>cdprime: ъ</p>
|
|
39
|
+
<p>Cdprime: ъ</p>
|
|
40
|
+
<p>dz: ѕ</p>
|
|
41
|
+
<p>Dz: Ѕ</p>
|
|
42
|
+
<p>dzh: џ</p>
|
|
43
|
+
<p>Dzh: Џ</p>
|
|
44
|
+
<p>
|
|
45
|
+
<span data-ams-doc="math inline"><tex-math>\mathrm{Ш}</tex-math></span>
|
|
46
|
+
</p>
|
|
47
|
+
<p>
|
|
48
|
+
<span data-ams-doc="math inline"><tex-math>Л = \mathrm{Ш}+ 1</tex-math></span>
|
|
49
|
+
</p>
|
|
50
|
+
<p>Л</p>
|
|
51
|
+
</section>
|
|
52
|
+
|
|
53
|
+
</section></body></html>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>hello</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
</article-meta>
|
|
10
|
+
</front>
|
|
11
|
+
<body id="ltxid2">
|
|
12
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
13
|
+
<p>hello, world</p>
|
|
14
|
+
<p>cprime: ь</p>
|
|
15
|
+
<p>Cprime: Ь</p>
|
|
16
|
+
<p>cdprime: ъ</p>
|
|
17
|
+
<p>Cdprime: ъ</p>
|
|
18
|
+
<p>dz: ѕ</p>
|
|
19
|
+
<p>Dz: Ѕ</p>
|
|
20
|
+
<p>dzh: џ</p>
|
|
21
|
+
<p>Dzh: Џ</p>
|
|
22
|
+
<p>
|
|
23
|
+
<inline-formula content-type="math/tex">
|
|
24
|
+
<tex-math>\mathrm{Ш}</tex-math>
|
|
25
|
+
</inline-formula>
|
|
26
|
+
</p>
|
|
27
|
+
<p>
|
|
28
|
+
<inline-formula content-type="math/tex">
|
|
29
|
+
<tex-math>Л = \mathrm{Ш}+ 1</tex-math>
|
|
30
|
+
</inline-formula>
|
|
31
|
+
</p>
|
|
32
|
+
<p>Л</p>
|
|
33
|
+
</sec>
|
|
34
|
+
</body>
|
|
35
|
+
</article>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>amsfonts</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "amsfonts",
|
|
4
|
+
"alttitle": "amsfonts",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {},
|
|
14
|
+
"permissions": {},
|
|
15
|
+
"journal": {
|
|
16
|
+
"identifiers": {
|
|
17
|
+
"AMS": {},
|
|
18
|
+
"issn": {
|
|
19
|
+
"print": "",
|
|
20
|
+
"electronic": ""
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"customMeta": {},
|
|
25
|
+
"categories": {},
|
|
26
|
+
"byline": "",
|
|
27
|
+
"volumeInfo": {},
|
|
28
|
+
"history": {
|
|
29
|
+
"rev-recd": []
|
|
30
|
+
},
|
|
31
|
+
"keywords": []
|
|
32
|
+
}</script><h1>amsfonts</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p>
|
|
37
|
+
<span data-ams-doc="math inline"><tex-math>\rightsquigarrow </tex-math></span>
|
|
38
|
+
</p>
|
|
39
|
+
</section>
|
|
40
|
+
|
|
41
|
+
</section></body></html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>amsfonts</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
</article-meta>
|
|
10
|
+
</front>
|
|
11
|
+
<body id="ltxid2">
|
|
12
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
13
|
+
<p>hello, world</p>
|
|
14
|
+
<p>
|
|
15
|
+
<inline-formula content-type="math/tex">
|
|
16
|
+
<tex-math>\rightsquigarrow </tex-math>
|
|
17
|
+
</inline-formula>
|
|
18
|
+
</p>
|
|
19
|
+
</sec>
|
|
20
|
+
</body>
|
|
21
|
+
</article>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>Title</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "Title",
|
|
4
|
+
"alttitle": "Title",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {},
|
|
14
|
+
"permissions": {},
|
|
15
|
+
"journal": {
|
|
16
|
+
"identifiers": {
|
|
17
|
+
"AMS": {},
|
|
18
|
+
"issn": {
|
|
19
|
+
"print": "",
|
|
20
|
+
"electronic": ""
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"customMeta": {},
|
|
25
|
+
"categories": {},
|
|
26
|
+
"byline": "",
|
|
27
|
+
"volumeInfo": {},
|
|
28
|
+
"history": {
|
|
29
|
+
"rev-recd": []
|
|
30
|
+
},
|
|
31
|
+
"keywords": []
|
|
32
|
+
}</script><h1>Title</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p>AEGO: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
37
|
+
<p>AEG0,AEGO: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08</a></cite><ams-x>, </ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
38
|
+
<p>AEG0, Section 5: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>Section 5</cite-detail></a></cite><ams-x>]</ams-x></cite-group></p>
|
|
39
|
+
<p>AEG0*, Section 5: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>Section 5</cite-detail></a></cite><ams-x>]</ams-x></cite-group></p>
|
|
40
|
+
<p>AEG0, Section 5, AEG0: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>Section 5</cite-detail></a></cite><ams-x>; </ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
41
|
+
<p>AEG0, Section 5: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>Section 5</cite-detail></a></cite><ams-x>; </ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
42
|
+
<p>AEG0, Section 5: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>Section 5</cite-detail></a></cite><ams-x>; </ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-AEG0">AEG08<cite-detail><ams-x>, </ams-x>theorem 4</cite-detail></a></cite><ams-x>]</ams-x></cite-group></p>
|
|
43
|
+
<p>Undefined: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-nosuchcite"><span data-ams-style="monospace">?nosuchcite</span></a></cite><ams-x>]</ams-x></cite-group></p>
|
|
44
|
+
<p>Eng 1: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-Enna1">Enga</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
45
|
+
<p>Eng 2: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-Enna2">Engb</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
46
|
+
<p>Eng 3: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-Enna3">Engc</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
47
|
+
<p>Eng 4: <cite-group><ams-x>[</ams-x><cite><a role="doc-biblioref" data-ams-ref="bibr" href="#bibr-Enna4">Engd</a></cite><ams-x>]</ams-x></cite-group></p>
|
|
48
|
+
</section>
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
<section role="doc-bibliography" data-ams-content-type="biblist" id="ltxid5" data-ams-doc-level="1"><h2><span data-ams-doc="title">References</span></h2><dl><dt id="bibr-Enna1"><ams-x>[</ams-x>Enga<ams-x>]</ams-x></dt><dd><div data-ams-doc="biblioentry"> Klaus-Jochen Engel, <i>1</i>.<code data-ams-doc="amsref">\bib{Enna1}{book}{
|
|
52
|
+
author={Engel, Klaus-Jochen},
|
|
53
|
+
title={1},
|
|
54
|
+
}
|
|
55
|
+
</code></div></dd><dt id="bibr-Enna2"><ams-x>[</ams-x>Engb<ams-x>]</ams-x></dt><dd><div data-ams-doc="biblioentry"> Klaus-Jochen Engel, <i>2</i>.<code data-ams-doc="amsref">\bib{Enna2}{book}{
|
|
56
|
+
author={Engel, Klaus-Jochen},
|
|
57
|
+
title={2},
|
|
58
|
+
}
|
|
59
|
+
</code></div></dd><dt id="bibr-Enna3"><ams-x>[</ams-x>Engc<ams-x>]</ams-x></dt><dd><div data-ams-doc="biblioentry"> Klaus-Jochen Engel, <i>3</i>.<code data-ams-doc="amsref">\bib{Enna3}{book}{
|
|
60
|
+
author={Engel, Klaus-Jochen},
|
|
61
|
+
title={3},
|
|
62
|
+
}
|
|
63
|
+
</code></div></dd><dt id="bibr-Enna4"><ams-x>[</ams-x>Engd<ams-x>]</ams-x></dt><dd><div data-ams-doc="biblioentry"> Klaus-Jochen Engel, <i>4</i>.<code data-ams-doc="amsref">\bib{Enna4}{book}{
|
|
64
|
+
author={Engel, Klaus-Jochen},
|
|
65
|
+
title={4},
|
|
66
|
+
}
|
|
67
|
+
</code></div></dd><dt id="bibr-AEG0"><ams-x>[</ams-x>AEG08<ams-x>]</ams-x></dt><dd><div data-ams-doc="biblioentry"> Juan A. Aledo, José M. Espinar, and José A. Gálvez, <i>Height estimates for surfaces with positive constant mean curvature in <span data-ams-doc="math inline"><tex-math>\mathbb{M}^2\times \mathbb{R}</tex-math></span></i>, Illinois J. Math. <strong>52</strong> (2008), no. 1, 203–211. MR<a href="https://mathscinet.ams.org/mathscinet-getitem?mr=2507241">2507241 (2010e:53006)</a><code data-ams-doc="amsref">\bib{AEG0}{article}{
|
|
68
|
+
author={Aledo, Juan A.},
|
|
69
|
+
author={Espinar, Jos{\'e} M.},
|
|
70
|
+
author={G{\'a}lvez, Jos{\'e} A.},
|
|
71
|
+
title={Height estimates for surfaces with positive constant mean curvature in $\mathbb {M}^2\times \mathbb {R}$},
|
|
72
|
+
journal={Illinois J. Math.},
|
|
73
|
+
volume={52},
|
|
74
|
+
date={2008},
|
|
75
|
+
number={1},
|
|
76
|
+
pages={203--211},
|
|
77
|
+
issn={0019-2082},
|
|
78
|
+
review={\MR {2507241 (2010e:53006)}},
|
|
79
|
+
}
|
|
80
|
+
</code></div></dd></dl></section>
|
|
81
|
+
|
|
82
|
+
</section></body></html>
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>Title</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
</article-meta>
|
|
10
|
+
</front>
|
|
11
|
+
<body id="ltxid2">
|
|
12
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
13
|
+
<p>hello, world</p>
|
|
14
|
+
<p>AEGO: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08</xref><x>]</x></cite-group></p>
|
|
15
|
+
<p>AEG0,AEGO: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08</xref><x>, </x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08</xref><x>]</x></cite-group></p>
|
|
16
|
+
<p>AEG0, Section 5: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>Section 5</cite-detail></xref><x>]</x></cite-group></p>
|
|
17
|
+
<p>AEG0*, Section 5: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>Section 5</cite-detail></xref><x>]</x></cite-group></p>
|
|
18
|
+
<p>AEG0, Section 5, AEG0: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>Section 5</cite-detail></xref><x>; </x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08</xref><x>]</x></cite-group></p>
|
|
19
|
+
<p>AEG0, Section 5: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>Section 5</cite-detail></xref><x>; </x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08</xref><x>]</x></cite-group></p>
|
|
20
|
+
<p>AEG0, Section 5: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>Section 5</cite-detail></xref><x>; </x><xref ref-type="bibr" rid="bibr-AEG0" specific-use="cite">AEG08<cite-detail><x>, </x>theorem 4</cite-detail></xref><x>]</x></cite-group></p>
|
|
21
|
+
<p>Undefined: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-nosuchcite" specific-use="cite"><monospace>?nosuchcite</monospace></xref><x>]</x></cite-group></p>
|
|
22
|
+
<p>Eng 1: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-Enna1" specific-use="cite">Enga</xref><x>]</x></cite-group></p>
|
|
23
|
+
<p>Eng 2: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-Enna2" specific-use="cite">Engb</xref><x>]</x></cite-group></p>
|
|
24
|
+
<p>Eng 3: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-Enna3" specific-use="cite">Engc</xref><x>]</x></cite-group></p>
|
|
25
|
+
<p>Eng 4: <cite-group><x>[</x><xref ref-type="bibr" rid="bibr-Enna4" specific-use="cite">Engd</xref><x>]</x></cite-group></p>
|
|
26
|
+
</sec>
|
|
27
|
+
</body>
|
|
28
|
+
<back id="ltxid4">
|
|
29
|
+
<ref-list content-type="biblist" id="ltxid5">
|
|
30
|
+
<title>References</title>
|
|
31
|
+
<ref id="bibr-Enna1">
|
|
32
|
+
<label><x>[</x>Enga<x>]</x></label>
|
|
33
|
+
<raw-citation type="amsrefs">\bib{Enna1}{book}{
|
|
34
|
+
author={Engel, Klaus-Jochen},
|
|
35
|
+
title={1},
|
|
36
|
+
}
|
|
37
|
+
</raw-citation>
|
|
38
|
+
<mixed-citation> Klaus-Jochen Engel, <italic>1</italic>.</mixed-citation>
|
|
39
|
+
</ref>
|
|
40
|
+
<ref id="bibr-Enna2">
|
|
41
|
+
<label><x>[</x>Engb<x>]</x></label>
|
|
42
|
+
<raw-citation type="amsrefs">\bib{Enna2}{book}{
|
|
43
|
+
author={Engel, Klaus-Jochen},
|
|
44
|
+
title={2},
|
|
45
|
+
}
|
|
46
|
+
</raw-citation>
|
|
47
|
+
<mixed-citation> Klaus-Jochen Engel, <italic>2</italic>.</mixed-citation>
|
|
48
|
+
</ref>
|
|
49
|
+
<ref id="bibr-Enna3">
|
|
50
|
+
<label><x>[</x>Engc<x>]</x></label>
|
|
51
|
+
<raw-citation type="amsrefs">\bib{Enna3}{book}{
|
|
52
|
+
author={Engel, Klaus-Jochen},
|
|
53
|
+
title={3},
|
|
54
|
+
}
|
|
55
|
+
</raw-citation>
|
|
56
|
+
<mixed-citation> Klaus-Jochen Engel, <italic>3</italic>.</mixed-citation>
|
|
57
|
+
</ref>
|
|
58
|
+
<ref id="bibr-Enna4">
|
|
59
|
+
<label><x>[</x>Engd<x>]</x></label>
|
|
60
|
+
<raw-citation type="amsrefs">\bib{Enna4}{book}{
|
|
61
|
+
author={Engel, Klaus-Jochen},
|
|
62
|
+
title={4},
|
|
63
|
+
}
|
|
64
|
+
</raw-citation>
|
|
65
|
+
<mixed-citation> Klaus-Jochen Engel, <italic>4</italic>.</mixed-citation>
|
|
66
|
+
</ref>
|
|
67
|
+
<ref id="bibr-AEG0">
|
|
68
|
+
<label><x>[</x>AEG08<x>]</x></label>
|
|
69
|
+
<raw-citation type="amsrefs">\bib{AEG0}{article}{
|
|
70
|
+
author={Aledo, Juan A.},
|
|
71
|
+
author={Espinar, Jos{\'e} M.},
|
|
72
|
+
author={G{\'a}lvez, Jos{\'e} A.},
|
|
73
|
+
title={Height estimates for surfaces with positive constant mean curvature in $\mathbb {M}^2\times \mathbb {R}$},
|
|
74
|
+
journal={Illinois J. Math.},
|
|
75
|
+
volume={52},
|
|
76
|
+
date={2008},
|
|
77
|
+
number={1},
|
|
78
|
+
pages={203--211},
|
|
79
|
+
issn={0019-2082},
|
|
80
|
+
review={\MR {2507241 (2010e:53006)}},
|
|
81
|
+
}
|
|
82
|
+
</raw-citation>
|
|
83
|
+
<mixed-citation> Juan A. Aledo, José M. Espinar, and José A. Gálvez, <italic>Height estimates for surfaces with positive constant mean curvature in <inline-formula content-type="math/tex"><tex-math>\mathbb{M}^2\times \mathbb{R}</tex-math></inline-formula></italic>, Illinois J. Math. <bold>52</bold> (2008), no. 1, 203–211. MR<ext-link xlink:href="https://mathscinet.ams.org/mathscinet-getitem?mr=2507241">2507241 (2010e:53006)</ext-link></mixed-citation>
|
|
84
|
+
</ref>
|
|
85
|
+
</ref-list>
|
|
86
|
+
</back>
|
|
87
|
+
</article>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>amsthm</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "amsthm",
|
|
4
|
+
"alttitle": "amsthm",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {},
|
|
14
|
+
"permissions": {},
|
|
15
|
+
"journal": {
|
|
16
|
+
"identifiers": {
|
|
17
|
+
"AMS": {},
|
|
18
|
+
"issn": {
|
|
19
|
+
"print": "",
|
|
20
|
+
"electronic": ""
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"customMeta": {},
|
|
25
|
+
"categories": {},
|
|
26
|
+
"byline": "",
|
|
27
|
+
"volumeInfo": {},
|
|
28
|
+
"history": {
|
|
29
|
+
"rev-recd": []
|
|
30
|
+
},
|
|
31
|
+
"keywords": []
|
|
32
|
+
}</script><h1>amsthm</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1"><h2><span data-ams-doc="label">1<ams-x>.</ams-x></span> <span data-ams-doc="title">First section</span></h2>
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<figure data-ams-style="thmplain" data-ams-content-type="theorem lem" id="ltxid4" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Lemma 1<ams-x>.</ams-x></span></figcaption>
|
|
38
|
+
|
|
39
|
+
<p>This is a lemma.</p>
|
|
40
|
+
</figure>
|
|
41
|
+
<p>Before theorem.</p>
|
|
42
|
+
<figure data-ams-style="thmplain" data-ams-content-type="theorem theorem" id="ltxid5" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Theorem 1.1<ams-x>.</ams-x></span></figcaption>
|
|
43
|
+
|
|
44
|
+
<p>Theorem text.</p>
|
|
45
|
+
<p>Emphasized <em>theorem</em> text.</p>
|
|
46
|
+
</figure>
|
|
47
|
+
<p>
|
|
48
|
+
<i>After theorem.</i>
|
|
49
|
+
</p>
|
|
50
|
+
<figure data-ams-style="thmplain" data-ams-content-type="theorem theorem" id="ltxid6" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Theorem 1.2</span> <span data-ams-doc="title"><ams-x>(</ams-x>Note<ams-x>)</ams-x><ams-x>.</ams-x></span></figcaption>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
<p>Theorem text. (currentlabel = 1.2)</p>
|
|
54
|
+
<p>Emphasized <em>theorem</em> text.</p>
|
|
55
|
+
</figure>
|
|
56
|
+
<p>After theorem <span data-ams-refrange="null" data-ams-ref="null" data-ams-doc="refgroup"><a data-ams-ref="statement" href="#ltxid6">1.2</a></span>.</p>
|
|
57
|
+
<p>After theorem.</p>
|
|
58
|
+
<figure data-ams-style="thmplain" data-ams-content-type="theorem theorem*" id="ltxid7" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Theorem<ams-x>.</ams-x></span></figcaption>
|
|
59
|
+
|
|
60
|
+
<p>Theorem text.</p>
|
|
61
|
+
<p>Emphasized <em>theorem</em> text.</p>
|
|
62
|
+
</figure>
|
|
63
|
+
<p>After theorem.</p>
|
|
64
|
+
<figure data-ams-style="thmplain" data-ams-content-type="theorem conj" id="ltxid8" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Conjecture 1.3<ams-x>.</ams-x></span></figcaption>
|
|
65
|
+
|
|
66
|
+
<p>This is a conjecture.</p>
|
|
67
|
+
</figure>
|
|
68
|
+
<p>After conjecture</p>
|
|
69
|
+
<figure data-ams-style="thmmystyle" data-ams-content-type="theorem mytheorem" id="ltxid9" data-ams-doc="statement"><figcaption><span data-ams-doc="label">My Theorem 1<ams-x>:</ams-x></span></figcaption>
|
|
70
|
+
|
|
71
|
+
<p>Theorem text.</p>
|
|
72
|
+
<p>Emphasized <em>theorem</em> text.</p>
|
|
73
|
+
</figure>
|
|
74
|
+
<p>After theorem.</p>
|
|
75
|
+
<figure data-ams-style="thmweird" data-ams-content-type="theorem weirdtheorem" id="ltxid10" data-ams-doc="statement"><figcaption><span data-ams-doc="label">Weird Theorem 1<ams-x>:</ams-x></span></figcaption>
|
|
76
|
+
|
|
77
|
+
<p>Theorem text.</p>
|
|
78
|
+
<p>Emphasized <em>theorem</em> text.</p>
|
|
79
|
+
</figure>
|
|
80
|
+
<p>After theorem.</p>
|
|
81
|
+
</section>
|
|
82
|
+
|
|
83
|
+
</section></body></html>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>amsthm</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
</article-meta>
|
|
10
|
+
</front>
|
|
11
|
+
<body id="ltxid2">
|
|
12
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
13
|
+
<label>1<x>.</x></label>
|
|
14
|
+
<title>First section</title>
|
|
15
|
+
<statement content-type="theorem lem" id="ltxid4" style="thmplain">
|
|
16
|
+
<label>Lemma 1<x>.</x></label>
|
|
17
|
+
<p>This is a lemma.</p>
|
|
18
|
+
</statement>
|
|
19
|
+
<p>Before theorem.</p>
|
|
20
|
+
<statement content-type="theorem theorem" id="ltxid5" style="thmplain">
|
|
21
|
+
<label>Theorem 1.1<x>.</x></label>
|
|
22
|
+
<p>Theorem text.</p>
|
|
23
|
+
<p>Emphasized <italic toggle="yes">theorem</italic> text.</p>
|
|
24
|
+
</statement>
|
|
25
|
+
<p>
|
|
26
|
+
<italic>After theorem.</italic>
|
|
27
|
+
</p>
|
|
28
|
+
<statement content-type="theorem theorem" id="ltxid6" style="thmplain">
|
|
29
|
+
<label>Theorem 1.2</label>
|
|
30
|
+
<title><x>(</x>Note<x>)</x><x>.</x></title>
|
|
31
|
+
<p>Theorem text. (currentlabel = 1.2)</p>
|
|
32
|
+
<p>Emphasized <italic toggle="yes">theorem</italic> text.</p>
|
|
33
|
+
</statement>
|
|
34
|
+
<p>After theorem <xref-group><xref ref-subtype="theorem" ref-type="statement" rid="ltxid6" specific-use="ref">1.2</xref></xref-group>.</p>
|
|
35
|
+
<p>After theorem.</p>
|
|
36
|
+
<statement content-type="theorem theorem*" id="ltxid7" style="thmplain">
|
|
37
|
+
<label>Theorem<x>.</x></label>
|
|
38
|
+
<p>Theorem text.</p>
|
|
39
|
+
<p>Emphasized <italic toggle="yes">theorem</italic> text.</p>
|
|
40
|
+
</statement>
|
|
41
|
+
<p>After theorem.</p>
|
|
42
|
+
<statement content-type="theorem conj" id="ltxid8" style="thmplain">
|
|
43
|
+
<label>Conjecture 1.3<x>.</x></label>
|
|
44
|
+
<p>This is a conjecture.</p>
|
|
45
|
+
</statement>
|
|
46
|
+
<p>After conjecture</p>
|
|
47
|
+
<statement content-type="theorem mytheorem" id="ltxid9" style="thmmystyle">
|
|
48
|
+
<label>My Theorem 1<x>:</x></label>
|
|
49
|
+
<p>Theorem text.</p>
|
|
50
|
+
<p>Emphasized <italic toggle="yes">theorem</italic> text.</p>
|
|
51
|
+
</statement>
|
|
52
|
+
<p>After theorem.</p>
|
|
53
|
+
<statement content-type="theorem weirdtheorem" id="ltxid10" style="thmweird">
|
|
54
|
+
<label>Weird Theorem 1<x>:</x></label>
|
|
55
|
+
<p>Theorem text.</p>
|
|
56
|
+
<p>Emphasized <italic toggle="yes">theorem</italic> text.</p>
|
|
57
|
+
</statement>
|
|
58
|
+
<p>After theorem.</p>
|
|
59
|
+
</sec>
|
|
60
|
+
</body>
|
|
61
|
+
</article>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>amsviet</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "amsviet",
|
|
4
|
+
"alttitle": "amsviet",
|
|
5
|
+
"identifiers": {
|
|
6
|
+
"AMS": {},
|
|
7
|
+
"crossref": {},
|
|
8
|
+
"uri": {},
|
|
9
|
+
"basename": null
|
|
10
|
+
},
|
|
11
|
+
"relatedArticles": {},
|
|
12
|
+
"publishers": [],
|
|
13
|
+
"contributors": {},
|
|
14
|
+
"permissions": {},
|
|
15
|
+
"journal": {
|
|
16
|
+
"identifiers": {
|
|
17
|
+
"AMS": {},
|
|
18
|
+
"issn": {
|
|
19
|
+
"print": "",
|
|
20
|
+
"electronic": ""
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"customMeta": {},
|
|
25
|
+
"categories": {},
|
|
26
|
+
"byline": "",
|
|
27
|
+
"volumeInfo": {},
|
|
28
|
+
"history": {
|
|
29
|
+
"rev-recd": []
|
|
30
|
+
},
|
|
31
|
+
"keywords": []
|
|
32
|
+
}</script><h1>amsviet</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p>quốc ngữ</p>
|
|
37
|
+
<p>quốc ngữ</p>
|
|
38
|
+
<p>Ngô Như Bình</p>
|
|
39
|
+
<p>Ngô Như Bình</p>
|
|
40
|
+
</section>
|
|
41
|
+
|
|
42
|
+
</section></body></html>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//AMS TEXML//DTD MODIFIED JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.3d2 20201130//EN" "texml-jats-1-3d2.dtd">
|
|
3
|
+
<article xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<front id="ltxid1">
|
|
5
|
+
<article-meta>
|
|
6
|
+
<title-group>
|
|
7
|
+
<article-title>amsviet</article-title>
|
|
8
|
+
</title-group>
|
|
9
|
+
</article-meta>
|
|
10
|
+
</front>
|
|
11
|
+
<body id="ltxid2">
|
|
12
|
+
<sec disp-level="1" id="ltxid3" specific-use="section">
|
|
13
|
+
<p>hello, world</p>
|
|
14
|
+
<p>quốc ngữ</p>
|
|
15
|
+
<p>quốc ngữ</p>
|
|
16
|
+
<p>Ngô Như Bình</p>
|
|
17
|
+
<p>Ngô Như Bình</p>
|
|
18
|
+
</sec>
|
|
19
|
+
</body>
|
|
20
|
+
</article>
|