@amermathsoc/texml-to-html 18.1.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 +23 -0
- package/README.md +2 -0
- 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 +3 -2
- 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 +27 -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} +2 -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/test/element-inline-formula-disp-formula-tex-math.js +0 -98
- package/test/hacks.js +0 -39
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>OT1tt encoding</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "OT1tt encoding",
|
|
4
|
+
"alttitle": "OT1tt encoding",
|
|
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>OT1tt encoding</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p><span data-ams-style="monospace">?</span> + <span data-ams-style="monospace">`</span> = ¿</p>
|
|
37
|
+
<p><span data-ams-style="monospace">!</span> + <span data-ams-style="monospace">`</span> = ¡</p>
|
|
38
|
+
<p><span data-ams-style="monospace">`</span> + <span data-ams-style="monospace">`</span> = ``</p>
|
|
39
|
+
<p><span data-ams-style="monospace">'</span> + <span data-ams-style="monospace">'</span> = ''</p>
|
|
40
|
+
<p><span data-ams-style="monospace">-</span> + <span data-ams-style="monospace">-</span> = --</p>
|
|
41
|
+
<p><span data-ams-style="monospace">--</span> + <span data-ams-style="monospace">-</span> = ---</p>
|
|
42
|
+
<p>"0B: ↑</p>
|
|
43
|
+
<p>"0C: ↓</p>
|
|
44
|
+
<p>"0D: '</p>
|
|
45
|
+
<p>"0E: ¡</p>
|
|
46
|
+
<p>"0F: ¿</p>
|
|
47
|
+
<p>"20: ␣</p>
|
|
48
|
+
<p>"22: "</p>
|
|
49
|
+
<p>"24: $</p>
|
|
50
|
+
<p>"27: '</p>
|
|
51
|
+
<p>"3C: <</p>
|
|
52
|
+
<p>"3E: ></p>
|
|
53
|
+
<p>"5C: \</p>
|
|
54
|
+
<p>"5F: _</p>
|
|
55
|
+
<p>"7B: {</p>
|
|
56
|
+
<p>"7C: |</p>
|
|
57
|
+
<p>"7D: }</p>
|
|
58
|
+
</section>
|
|
59
|
+
|
|
60
|
+
</section></body></html>
|
|
@@ -0,0 +1,38 @@
|
|
|
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>OT1tt encoding</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><monospace>?</monospace> + <monospace>`</monospace> = ¿</p>
|
|
15
|
+
<p><monospace>!</monospace> + <monospace>`</monospace> = ¡</p>
|
|
16
|
+
<p><monospace>`</monospace> + <monospace>`</monospace> = ``</p>
|
|
17
|
+
<p><monospace>'</monospace> + <monospace>'</monospace> = ''</p>
|
|
18
|
+
<p><monospace>-</monospace> + <monospace>-</monospace> = --</p>
|
|
19
|
+
<p><monospace>--</monospace> + <monospace>-</monospace> = ---</p>
|
|
20
|
+
<p>"0B: ↑</p>
|
|
21
|
+
<p>"0C: ↓</p>
|
|
22
|
+
<p>"0D: '</p>
|
|
23
|
+
<p>"0E: ¡</p>
|
|
24
|
+
<p>"0F: ¿</p>
|
|
25
|
+
<p>"20: ␣</p>
|
|
26
|
+
<p>"22: "</p>
|
|
27
|
+
<p>"24: $</p>
|
|
28
|
+
<p>"27: '</p>
|
|
29
|
+
<p>"3C: <</p>
|
|
30
|
+
<p>"3E: ></p>
|
|
31
|
+
<p>"5C: \</p>
|
|
32
|
+
<p>"5F: _</p>
|
|
33
|
+
<p>"7B: {</p>
|
|
34
|
+
<p>"7C: |</p>
|
|
35
|
+
<p>"7D: }</p>
|
|
36
|
+
</sec>
|
|
37
|
+
</body>
|
|
38
|
+
</article>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>OT2 encoding</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "OT2 encoding",
|
|
4
|
+
"alttitle": "OT2 encoding",
|
|
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>OT2 encoding</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p>хелло, щорлд</p>
|
|
37
|
+
<p><span data-ams-style="monospace">-</span> + <span data-ams-style="monospace">-</span> = –</p>
|
|
38
|
+
<p>– + <span data-ams-style="monospace">-</span> = —</p>
|
|
39
|
+
<p><span data-ams-style="monospace">`</span> = ‘</p>
|
|
40
|
+
<p><span data-ams-style="monospace">'</span> = ’</p>
|
|
41
|
+
<p>` + <span data-ams-style="monospace">`</span> = “</p>
|
|
42
|
+
<p>' + <span data-ams-style="monospace">'</span> = ”</p>
|
|
43
|
+
<p><span data-ams-style="monospace">"</span> = ”</p>
|
|
44
|
+
<p><span data-ams-style="monospace">6</span> + <span data-ams-style="monospace">h</span> = Щ</p>
|
|
45
|
+
<p><span data-ams-style="monospace">6</span> + <span data-ams-style="monospace">H</span> = Щ</p>
|
|
46
|
+
<p><span data-ams-style="monospace">7</span> + <span data-ams-style="monospace">h</span> = щ</p>
|
|
47
|
+
<p><span data-ams-style="monospace">C</span> + <span data-ams-style="monospace">1</span> = Ћ</p>
|
|
48
|
+
<p><span data-ams-style="monospace">C</span> + <span data-ams-style="monospace">H</span> = Ч</p>
|
|
49
|
+
<p><span data-ams-style="monospace">C</span> + <span data-ams-style="monospace">h</span> = Ч</p>
|
|
50
|
+
<p><span data-ams-style="monospace">D</span> + <span data-ams-style="monospace">1</span> = Ђ</p>
|
|
51
|
+
<p><span data-ams-style="monospace">D</span> + <span data-ams-style="monospace">2</span> = Џ</p>
|
|
52
|
+
<p><span data-ams-style="monospace">D</span> + <span data-ams-style="monospace">3</span> = Ѕ</p>
|
|
53
|
+
<p><span data-ams-style="monospace">D</span> + <span data-ams-style="monospace">J</span> = Ђ</p>
|
|
54
|
+
<p><span data-ams-style="monospace">D</span> + <span data-ams-style="monospace">j</span> = Ђ</p>
|
|
55
|
+
<p><span data-ams-style="monospace">E</span> + <span data-ams-style="monospace">0</span> = Ё</p>
|
|
56
|
+
<p><span data-ams-style="monospace">E</span> + <span data-ams-style="monospace">1</span> = Э</p>
|
|
57
|
+
<p><span data-ams-style="monospace">E</span> + <span data-ams-style="monospace">2</span> = Є</p>
|
|
58
|
+
<p><span data-ams-style="monospace">I</span> + <span data-ams-style="monospace">0</span> = Й</p>
|
|
59
|
+
<p><span data-ams-style="monospace">I</span> + <span data-ams-style="monospace">1</span> = І</p>
|
|
60
|
+
<p><span data-ams-style="monospace">J</span> + <span data-ams-style="monospace">1</span> = Я</p>
|
|
61
|
+
<p><span data-ams-style="monospace">J</span> + <span data-ams-style="monospace">2</span> = Ю</p>
|
|
62
|
+
<p><span data-ams-style="monospace">K</span> + <span data-ams-style="monospace">H</span> = Х</p>
|
|
63
|
+
<p><span data-ams-style="monospace">K</span> + <span data-ams-style="monospace">h</span> = Х</p>
|
|
64
|
+
<p><span data-ams-style="monospace">L</span> + <span data-ams-style="monospace">1</span> = Љ</p>
|
|
65
|
+
<p><span data-ams-style="monospace">L</span> + <span data-ams-style="monospace">J</span> = Љ</p>
|
|
66
|
+
<p><span data-ams-style="monospace">L</span> + <span data-ams-style="monospace">j</span> = Љ</p>
|
|
67
|
+
<p><span data-ams-style="monospace">N</span> + <span data-ams-style="monospace">1</span> = Њ</p>
|
|
68
|
+
<p><span data-ams-style="monospace">N</span> + <span data-ams-style="monospace">J</span> = Њ</p>
|
|
69
|
+
<p><span data-ams-style="monospace">N</span> + <span data-ams-style="monospace">j</span> = Њ</p>
|
|
70
|
+
<p><span data-ams-style="monospace">P</span> + <span data-ams-style="monospace">1</span> = Ь</p>
|
|
71
|
+
<p><span data-ams-style="monospace">P</span> + <span data-ams-style="monospace">2</span> = Ъ</p>
|
|
72
|
+
<p><span data-ams-style="monospace">S</span> + <span data-ams-style="monospace">H</span> = Ш</p>
|
|
73
|
+
<p><span data-ams-style="monospace">S</span> + <span data-ams-style="monospace">h</span> = Ш</p>
|
|
74
|
+
<p><span data-ams-style="monospace">T</span> + <span data-ams-style="monospace">S</span> = Ц</p>
|
|
75
|
+
<p><span data-ams-style="monospace">T</span> + <span data-ams-style="monospace">s</span> = Ц</p>
|
|
76
|
+
<p><span data-ams-style="monospace">X</span> + <span data-ams-style="monospace">Q</span> = Щ</p>
|
|
77
|
+
<p><span data-ams-style="monospace">X</span> + <span data-ams-style="monospace">q</span> = Щ</p>
|
|
78
|
+
<p><span data-ams-style="monospace">X</span> + <span data-ams-style="monospace">C</span> = 6</p>
|
|
79
|
+
<p><span data-ams-style="monospace">X</span> + <span data-ams-style="monospace">c</span> = 6</p>
|
|
80
|
+
<p><span data-ams-style="monospace">Y</span> + <span data-ams-style="monospace">A</span> = Я</p>
|
|
81
|
+
<p><span data-ams-style="monospace">Y</span> + <span data-ams-style="monospace">a</span> = Я</p>
|
|
82
|
+
<p><span data-ams-style="monospace">Y</span> + <span data-ams-style="monospace">U</span> = Ю</p>
|
|
83
|
+
<p><span data-ams-style="monospace">Y</span> + <span data-ams-style="monospace">u</span> = Ю</p>
|
|
84
|
+
<p><span data-ams-style="monospace">Z</span> + <span data-ams-style="monospace">1</span> = Ж</p>
|
|
85
|
+
<p><span data-ams-style="monospace">Z</span> + <span data-ams-style="monospace">H</span> = Ж</p>
|
|
86
|
+
<p><span data-ams-style="monospace">Z</span> + <span data-ams-style="monospace">h</span> = Ж</p>
|
|
87
|
+
<p><span data-ams-style="monospace">[</span> + <span data-ams-style="monospace">[</span> = «</p>
|
|
88
|
+
<p><span data-ams-style="monospace">]</span> + <span data-ams-style="monospace">]</span> = »</p>
|
|
89
|
+
<p><span data-ams-style="monospace">c</span> + <span data-ams-style="monospace">1</span> = ћ</p>
|
|
90
|
+
<p><span data-ams-style="monospace">c</span> + <span data-ams-style="monospace">h</span> = ч</p>
|
|
91
|
+
<p><span data-ams-style="monospace">d</span> + <span data-ams-style="monospace">1</span> = ђ</p>
|
|
92
|
+
<p><span data-ams-style="monospace">d</span> + <span data-ams-style="monospace">2</span> = џ</p>
|
|
93
|
+
<p><span data-ams-style="monospace">d</span> + <span data-ams-style="monospace">3</span> = ѕ</p>
|
|
94
|
+
<p><span data-ams-style="monospace">d</span> + <span data-ams-style="monospace">j</span> = ђ</p>
|
|
95
|
+
<p><span data-ams-style="monospace">e</span> + <span data-ams-style="monospace">0</span> = ё</p>
|
|
96
|
+
<p><span data-ams-style="monospace">e</span> + <span data-ams-style="monospace">1</span> = э</p>
|
|
97
|
+
<p><span data-ams-style="monospace">e</span> + <span data-ams-style="monospace">2</span> = є</p>
|
|
98
|
+
<p><span data-ams-style="monospace">i</span> + <span data-ams-style="monospace">0</span> = й</p>
|
|
99
|
+
<p><span data-ams-style="monospace">i</span> + <span data-ams-style="monospace">1</span> = і</p>
|
|
100
|
+
<p><span data-ams-style="monospace">j</span> + <span data-ams-style="monospace">1</span> = я</p>
|
|
101
|
+
<p><span data-ams-style="monospace">j</span> + <span data-ams-style="monospace">2</span> = ю</p>
|
|
102
|
+
<p><span data-ams-style="monospace">k</span> + <span data-ams-style="monospace">h</span> = х</p>
|
|
103
|
+
<p><span data-ams-style="monospace">l</span> + <span data-ams-style="monospace">1</span> = љ</p>
|
|
104
|
+
<p><span data-ams-style="monospace">l</span> + <span data-ams-style="monospace">j</span> = љ</p>
|
|
105
|
+
<p><span data-ams-style="monospace">n</span> + <span data-ams-style="monospace">1</span> = њ</p>
|
|
106
|
+
<p><span data-ams-style="monospace">n</span> + <span data-ams-style="monospace">j</span> = њ</p>
|
|
107
|
+
<p><span data-ams-style="monospace">p</span> + <span data-ams-style="monospace">1</span> = п1</p>
|
|
108
|
+
<p><span data-ams-style="monospace">p</span> + <span data-ams-style="monospace">2</span> = п2</p>
|
|
109
|
+
<p><span data-ams-style="monospace">s</span> + <span data-ams-style="monospace">h</span> = ш</p>
|
|
110
|
+
<p><span data-ams-style="monospace">t</span> + <span data-ams-style="monospace">s</span> = ц</p>
|
|
111
|
+
<p><span data-ams-style="monospace">x</span> + <span data-ams-style="monospace">q</span> = щ</p>
|
|
112
|
+
<p><span data-ams-style="monospace">x</span> + <span data-ams-style="monospace">c</span> = 7</p>
|
|
113
|
+
<p><span data-ams-style="monospace">y</span> + <span data-ams-style="monospace">a</span> = я</p>
|
|
114
|
+
<p><span data-ams-style="monospace">y</span> + <span data-ams-style="monospace">u</span> = ю</p>
|
|
115
|
+
<p><span data-ams-style="monospace">z</span> + <span data-ams-style="monospace">1</span> = ж</p>
|
|
116
|
+
<p><span data-ams-style="monospace">z</span> + <span data-ams-style="monospace">h</span> = ж</p>
|
|
117
|
+
</section>
|
|
118
|
+
|
|
119
|
+
</section></body></html>
|
|
@@ -0,0 +1,97 @@
|
|
|
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>OT2 encoding</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>хелло, щорлд</p>
|
|
15
|
+
<p><monospace>-</monospace> + <monospace>-</monospace> = –</p>
|
|
16
|
+
<p>– + <monospace>-</monospace> = —</p>
|
|
17
|
+
<p><monospace>`</monospace> = ‘</p>
|
|
18
|
+
<p><monospace>'</monospace> = ’</p>
|
|
19
|
+
<p>` + <monospace>`</monospace> = “</p>
|
|
20
|
+
<p>' + <monospace>'</monospace> = ”</p>
|
|
21
|
+
<p><monospace>"</monospace> = ”</p>
|
|
22
|
+
<p><monospace>6</monospace> + <monospace>h</monospace> = Щ</p>
|
|
23
|
+
<p><monospace>6</monospace> + <monospace>H</monospace> = Щ</p>
|
|
24
|
+
<p><monospace>7</monospace> + <monospace>h</monospace> = щ</p>
|
|
25
|
+
<p><monospace>C</monospace> + <monospace>1</monospace> = Ћ</p>
|
|
26
|
+
<p><monospace>C</monospace> + <monospace>H</monospace> = Ч</p>
|
|
27
|
+
<p><monospace>C</monospace> + <monospace>h</monospace> = Ч</p>
|
|
28
|
+
<p><monospace>D</monospace> + <monospace>1</monospace> = Ђ</p>
|
|
29
|
+
<p><monospace>D</monospace> + <monospace>2</monospace> = Џ</p>
|
|
30
|
+
<p><monospace>D</monospace> + <monospace>3</monospace> = Ѕ</p>
|
|
31
|
+
<p><monospace>D</monospace> + <monospace>J</monospace> = Ђ</p>
|
|
32
|
+
<p><monospace>D</monospace> + <monospace>j</monospace> = Ђ</p>
|
|
33
|
+
<p><monospace>E</monospace> + <monospace>0</monospace> = Ё</p>
|
|
34
|
+
<p><monospace>E</monospace> + <monospace>1</monospace> = Э</p>
|
|
35
|
+
<p><monospace>E</monospace> + <monospace>2</monospace> = Є</p>
|
|
36
|
+
<p><monospace>I</monospace> + <monospace>0</monospace> = Й</p>
|
|
37
|
+
<p><monospace>I</monospace> + <monospace>1</monospace> = І</p>
|
|
38
|
+
<p><monospace>J</monospace> + <monospace>1</monospace> = Я</p>
|
|
39
|
+
<p><monospace>J</monospace> + <monospace>2</monospace> = Ю</p>
|
|
40
|
+
<p><monospace>K</monospace> + <monospace>H</monospace> = Х</p>
|
|
41
|
+
<p><monospace>K</monospace> + <monospace>h</monospace> = Х</p>
|
|
42
|
+
<p><monospace>L</monospace> + <monospace>1</monospace> = Љ</p>
|
|
43
|
+
<p><monospace>L</monospace> + <monospace>J</monospace> = Љ</p>
|
|
44
|
+
<p><monospace>L</monospace> + <monospace>j</monospace> = Љ</p>
|
|
45
|
+
<p><monospace>N</monospace> + <monospace>1</monospace> = Њ</p>
|
|
46
|
+
<p><monospace>N</monospace> + <monospace>J</monospace> = Њ</p>
|
|
47
|
+
<p><monospace>N</monospace> + <monospace>j</monospace> = Њ</p>
|
|
48
|
+
<p><monospace>P</monospace> + <monospace>1</monospace> = Ь</p>
|
|
49
|
+
<p><monospace>P</monospace> + <monospace>2</monospace> = Ъ</p>
|
|
50
|
+
<p><monospace>S</monospace> + <monospace>H</monospace> = Ш</p>
|
|
51
|
+
<p><monospace>S</monospace> + <monospace>h</monospace> = Ш</p>
|
|
52
|
+
<p><monospace>T</monospace> + <monospace>S</monospace> = Ц</p>
|
|
53
|
+
<p><monospace>T</monospace> + <monospace>s</monospace> = Ц</p>
|
|
54
|
+
<p><monospace>X</monospace> + <monospace>Q</monospace> = Щ</p>
|
|
55
|
+
<p><monospace>X</monospace> + <monospace>q</monospace> = Щ</p>
|
|
56
|
+
<p><monospace>X</monospace> + <monospace>C</monospace> = 6</p>
|
|
57
|
+
<p><monospace>X</monospace> + <monospace>c</monospace> = 6</p>
|
|
58
|
+
<p><monospace>Y</monospace> + <monospace>A</monospace> = Я</p>
|
|
59
|
+
<p><monospace>Y</monospace> + <monospace>a</monospace> = Я</p>
|
|
60
|
+
<p><monospace>Y</monospace> + <monospace>U</monospace> = Ю</p>
|
|
61
|
+
<p><monospace>Y</monospace> + <monospace>u</monospace> = Ю</p>
|
|
62
|
+
<p><monospace>Z</monospace> + <monospace>1</monospace> = Ж</p>
|
|
63
|
+
<p><monospace>Z</monospace> + <monospace>H</monospace> = Ж</p>
|
|
64
|
+
<p><monospace>Z</monospace> + <monospace>h</monospace> = Ж</p>
|
|
65
|
+
<p><monospace>[</monospace> + <monospace>[</monospace> = «</p>
|
|
66
|
+
<p><monospace>]</monospace> + <monospace>]</monospace> = »</p>
|
|
67
|
+
<p><monospace>c</monospace> + <monospace>1</monospace> = ћ</p>
|
|
68
|
+
<p><monospace>c</monospace> + <monospace>h</monospace> = ч</p>
|
|
69
|
+
<p><monospace>d</monospace> + <monospace>1</monospace> = ђ</p>
|
|
70
|
+
<p><monospace>d</monospace> + <monospace>2</monospace> = џ</p>
|
|
71
|
+
<p><monospace>d</monospace> + <monospace>3</monospace> = ѕ</p>
|
|
72
|
+
<p><monospace>d</monospace> + <monospace>j</monospace> = ђ</p>
|
|
73
|
+
<p><monospace>e</monospace> + <monospace>0</monospace> = ё</p>
|
|
74
|
+
<p><monospace>e</monospace> + <monospace>1</monospace> = э</p>
|
|
75
|
+
<p><monospace>e</monospace> + <monospace>2</monospace> = є</p>
|
|
76
|
+
<p><monospace>i</monospace> + <monospace>0</monospace> = й</p>
|
|
77
|
+
<p><monospace>i</monospace> + <monospace>1</monospace> = і</p>
|
|
78
|
+
<p><monospace>j</monospace> + <monospace>1</monospace> = я</p>
|
|
79
|
+
<p><monospace>j</monospace> + <monospace>2</monospace> = ю</p>
|
|
80
|
+
<p><monospace>k</monospace> + <monospace>h</monospace> = х</p>
|
|
81
|
+
<p><monospace>l</monospace> + <monospace>1</monospace> = љ</p>
|
|
82
|
+
<p><monospace>l</monospace> + <monospace>j</monospace> = љ</p>
|
|
83
|
+
<p><monospace>n</monospace> + <monospace>1</monospace> = њ</p>
|
|
84
|
+
<p><monospace>n</monospace> + <monospace>j</monospace> = њ</p>
|
|
85
|
+
<p><monospace>p</monospace> + <monospace>1</monospace> = п1</p>
|
|
86
|
+
<p><monospace>p</monospace> + <monospace>2</monospace> = п2</p>
|
|
87
|
+
<p><monospace>s</monospace> + <monospace>h</monospace> = ш</p>
|
|
88
|
+
<p><monospace>t</monospace> + <monospace>s</monospace> = ц</p>
|
|
89
|
+
<p><monospace>x</monospace> + <monospace>q</monospace> = щ</p>
|
|
90
|
+
<p><monospace>x</monospace> + <monospace>c</monospace> = 7</p>
|
|
91
|
+
<p><monospace>y</monospace> + <monospace>a</monospace> = я</p>
|
|
92
|
+
<p><monospace>y</monospace> + <monospace>u</monospace> = ю</p>
|
|
93
|
+
<p><monospace>z</monospace> + <monospace>1</monospace> = ж</p>
|
|
94
|
+
<p><monospace>z</monospace> + <monospace>h</monospace> = ж</p>
|
|
95
|
+
</sec>
|
|
96
|
+
</body>
|
|
97
|
+
</article>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>OT4 encoding</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "OT4 encoding",
|
|
4
|
+
"alttitle": "OT4 encoding",
|
|
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>OT4 encoding</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p><span data-ams-style="monospace">!</span> + <span data-ams-style="monospace">`</span> = ¡</p>
|
|
37
|
+
<p><span data-ams-style="monospace">,</span> + <span data-ams-style="monospace">,</span> = „</p>
|
|
38
|
+
<p><span data-ams-style="monospace">-</span> + <span data-ams-style="monospace">-</span> = –</p>
|
|
39
|
+
<p><span data-ams-style="monospace">?</span> + <span data-ams-style="monospace">`</span> = ¿</p>
|
|
40
|
+
<p><span data-ams-style="monospace">¡</span> + <span data-ams-style="monospace"><</span> = «</p>
|
|
41
|
+
<p><span data-ams-style="monospace">¿</span> + <span data-ams-style="monospace">></span> = »</p>
|
|
42
|
+
<p><span data-ams-style="monospace">--</span> + <span data-ams-style="monospace">-</span> = —</p>
|
|
43
|
+
<p><span data-ams-style="monospace">`</span> + <span data-ams-style="monospace">`</span> = “</p>
|
|
44
|
+
<p><span data-ams-style="monospace">'</span> + <span data-ams-style="monospace">'</span> = ”</p>
|
|
45
|
+
<p><span data-ams-style="monospace">"81</span>: Ą</p>
|
|
46
|
+
<p><span data-ams-style="monospace">"82</span>: Ć</p>
|
|
47
|
+
<p><span data-ams-style="monospace">"86</span>: Ę</p>
|
|
48
|
+
<p><span data-ams-style="monospace">"8A</span>: Ł</p>
|
|
49
|
+
<p><span data-ams-style="monospace">"8B</span>: Ń</p>
|
|
50
|
+
<p><span data-ams-style="monospace">"91</span>: Ś</p>
|
|
51
|
+
<p><span data-ams-style="monospace">"99</span>: Ź</p>
|
|
52
|
+
<p><span data-ams-style="monospace">"9B</span>: Ż</p>
|
|
53
|
+
<p><span data-ams-style="monospace">"A1</span>: ą</p>
|
|
54
|
+
<p><span data-ams-style="monospace">"A2</span>: ć</p>
|
|
55
|
+
<p><span data-ams-style="monospace">"A6</span>: ę</p>
|
|
56
|
+
<p><span data-ams-style="monospace">"AA</span>: ł</p>
|
|
57
|
+
<p><span data-ams-style="monospace">"AB</span>: ń</p>
|
|
58
|
+
<p><span data-ams-style="monospace">"AE</span>: «</p>
|
|
59
|
+
<p><span data-ams-style="monospace">"AF</span>: »</p>
|
|
60
|
+
<p><span data-ams-style="monospace">"B1</span>: ś</p>
|
|
61
|
+
<p><span data-ams-style="monospace">"B9</span>: ź</p>
|
|
62
|
+
<p><span data-ams-style="monospace">"BB</span>: ż</p>
|
|
63
|
+
<p><span data-ams-style="monospace">"D3</span>: Ó</p>
|
|
64
|
+
<p><span data-ams-style="monospace">"F3</span>: ó</p>
|
|
65
|
+
<p><span data-ams-style="monospace">"FF</span>: „</p>
|
|
66
|
+
</section>
|
|
67
|
+
|
|
68
|
+
</section></body></html>
|
|
@@ -0,0 +1,46 @@
|
|
|
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>OT4 encoding</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><monospace>!</monospace> + <monospace>`</monospace> = ¡</p>
|
|
15
|
+
<p><monospace>,</monospace> + <monospace>,</monospace> = „</p>
|
|
16
|
+
<p><monospace>-</monospace> + <monospace>-</monospace> = –</p>
|
|
17
|
+
<p><monospace>?</monospace> + <monospace>`</monospace> = ¿</p>
|
|
18
|
+
<p><monospace>¡</monospace> + <monospace><</monospace> = «</p>
|
|
19
|
+
<p><monospace>¿</monospace> + <monospace>></monospace> = »</p>
|
|
20
|
+
<p><monospace>--</monospace> + <monospace>-</monospace> = —</p>
|
|
21
|
+
<p><monospace>`</monospace> + <monospace>`</monospace> = “</p>
|
|
22
|
+
<p><monospace>'</monospace> + <monospace>'</monospace> = ”</p>
|
|
23
|
+
<p><monospace>"81</monospace>: Ą</p>
|
|
24
|
+
<p><monospace>"82</monospace>: Ć</p>
|
|
25
|
+
<p><monospace>"86</monospace>: Ę</p>
|
|
26
|
+
<p><monospace>"8A</monospace>: Ł</p>
|
|
27
|
+
<p><monospace>"8B</monospace>: Ń</p>
|
|
28
|
+
<p><monospace>"91</monospace>: Ś</p>
|
|
29
|
+
<p><monospace>"99</monospace>: Ź</p>
|
|
30
|
+
<p><monospace>"9B</monospace>: Ż</p>
|
|
31
|
+
<p><monospace>"A1</monospace>: ą</p>
|
|
32
|
+
<p><monospace>"A2</monospace>: ć</p>
|
|
33
|
+
<p><monospace>"A6</monospace>: ę</p>
|
|
34
|
+
<p><monospace>"AA</monospace>: ł</p>
|
|
35
|
+
<p><monospace>"AB</monospace>: ń</p>
|
|
36
|
+
<p><monospace>"AE</monospace>: «</p>
|
|
37
|
+
<p><monospace>"AF</monospace>: »</p>
|
|
38
|
+
<p><monospace>"B1</monospace>: ś</p>
|
|
39
|
+
<p><monospace>"B9</monospace>: ź</p>
|
|
40
|
+
<p><monospace>"BB</monospace>: ż</p>
|
|
41
|
+
<p><monospace>"D3</monospace>: Ó</p>
|
|
42
|
+
<p><monospace>"F3</monospace>: ó</p>
|
|
43
|
+
<p><monospace>"FF</monospace>: „</p>
|
|
44
|
+
</sec>
|
|
45
|
+
</body>
|
|
46
|
+
</article>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>ՈՏ6 (Արմենիան)</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "ՈՏ6 (Արմենիան)",
|
|
4
|
+
"alttitle": "ՈՏ6 (Արմենիան)",
|
|
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>ՈՏ6 (Արմենիան)</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>բարև աշխարհ</p>
|
|
36
|
+
</section>
|
|
37
|
+
<section id="ltxid4" 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">լիգատuրես</span></h2>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<p>«</p>
|
|
41
|
+
<p>«</p>
|
|
42
|
+
<p>»</p>
|
|
43
|
+
<p>»</p>
|
|
44
|
+
<p>Ծ</p>
|
|
45
|
+
<p>Չ</p>
|
|
46
|
+
<p>Չ</p>
|
|
47
|
+
</section>
|
|
48
|
+
|
|
49
|
+
</section></body></html>
|
|
@@ -0,0 +1,27 @@
|
|
|
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>ՈՏ6 (Արմենիան)</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>բարև աշխարհ</p>
|
|
14
|
+
</sec>
|
|
15
|
+
<sec disp-level="1" id="ltxid4" specific-use="section">
|
|
16
|
+
<label>1<x>.</x></label>
|
|
17
|
+
<title>լիգատuրես</title>
|
|
18
|
+
<p>«</p>
|
|
19
|
+
<p>«</p>
|
|
20
|
+
<p>»</p>
|
|
21
|
+
<p>»</p>
|
|
22
|
+
<p>Ծ</p>
|
|
23
|
+
<p>Չ</p>
|
|
24
|
+
<p>Չ</p>
|
|
25
|
+
</sec>
|
|
26
|
+
</body>
|
|
27
|
+
</article>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<!DOCTYPE html> <html dir="ltr" lang="en"><head><meta charset="utf-8"><meta content="width=device-width, initial-scale=1" name="viewport"><title>T1 encoding</title></head><body><section data-ams-doc="article">
|
|
2
|
+
<section data-ams-doc="frontmatter"><script type="application/json">{
|
|
3
|
+
"title": "T1 encoding",
|
|
4
|
+
"alttitle": "T1 encoding",
|
|
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>T1 encoding</h1></section>
|
|
33
|
+
|
|
34
|
+
<section id="ltxid3" data-ams-doc="section" data-ams-doc-level="1">
|
|
35
|
+
<p>hello, world</p>
|
|
36
|
+
<p><span data-ams-style="monospace">-</span> + <span data-ams-style="monospace">-</span> = –</p>
|
|
37
|
+
<p><span data-ams-style="monospace">--</span> + <span data-ams-style="monospace">-</span> = —</p>
|
|
38
|
+
<p><span data-ams-style="monospace">?</span> + <span data-ams-style="monospace">`</span> = ¿</p>
|
|
39
|
+
<p><span data-ams-style="monospace">!</span> + <span data-ams-style="monospace">`</span> = ¡</p>
|
|
40
|
+
<p><span data-ams-style="monospace"><</span> + <span data-ams-style="monospace"><</span> = «</p>
|
|
41
|
+
<p><span data-ams-style="monospace">></span> + <span data-ams-style="monospace">></span> = »</p>
|
|
42
|
+
</section>
|
|
43
|
+
|
|
44
|
+
</section></body></html>
|
|
@@ -0,0 +1,22 @@
|
|
|
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>T1 encoding</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><monospace>-</monospace> + <monospace>-</monospace> = –</p>
|
|
15
|
+
<p><monospace>--</monospace> + <monospace>-</monospace> = —</p>
|
|
16
|
+
<p><monospace>?</monospace> + <monospace>`</monospace> = ¿</p>
|
|
17
|
+
<p><monospace>!</monospace> + <monospace>`</monospace> = ¡</p>
|
|
18
|
+
<p><monospace><</monospace> + <monospace><</monospace> = «</p>
|
|
19
|
+
<p><monospace>></monospace> + <monospace>></monospace> = »</p>
|
|
20
|
+
</sec>
|
|
21
|
+
</body>
|
|
22
|
+
</article>
|