temml 0.10.31 → 0.10.33
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/README.md +1 -1
- package/dist/Temml-Asana.css +6 -0
- package/dist/Temml-Fira.css +6 -0
- package/dist/Temml-Latin-Modern.css +6 -0
- package/dist/Temml-Libertinus.css +6 -0
- package/dist/Temml-Local.css +6 -0
- package/dist/Temml-STIX2.css +6 -0
- package/dist/temml.cjs +251 -126
- package/dist/temml.js +251 -126
- package/dist/temml.min.js +1 -1
- package/dist/temml.mjs +251 -126
- package/dist/temmlPostProcess.js +37 -24
- package/package.json +1 -1
- package/src/Style.js +5 -3
- package/src/buildMathML.js +84 -62
- package/src/domTree.js +34 -0
- package/src/environments/cd.js +15 -10
- package/src/functions/arrow.js +11 -3
- package/src/functions/def.js +7 -4
- package/src/functions/delimsizing.js +1 -0
- package/src/functions/font.js +1 -0
- package/src/functions/genfrac.js +13 -4
- package/src/functions/href.js +4 -6
- package/src/functions/op.js +0 -7
- package/src/functions/ref.js +3 -5
- package/src/functions/rule.js +2 -0
- package/src/functions/supsub.js +12 -3
- package/src/functions/vcenter.js +30 -0
- package/src/functions.js +1 -0
- package/src/macros.js +1 -1
- package/src/postProcess.js +37 -24
- package/src/symbols.js +2 -1
- package/src/variant.js +2 -0
package/README.md
CHANGED
package/dist/Temml-Asana.css
CHANGED
@@ -50,6 +50,12 @@ mo.prime-pad {
|
|
50
50
|
padding-left: 0.08em;
|
51
51
|
}
|
52
52
|
|
53
|
+
/* \cancel & \phase use background images. Get them to print. */
|
54
|
+
menclose {
|
55
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
56
|
+
print-color-adjust: exact;
|
57
|
+
}
|
58
|
+
|
53
59
|
/* Array cell justification in Firefox & WebKit */
|
54
60
|
.tml-right {
|
55
61
|
text-align: right;
|
package/dist/Temml-Fira.css
CHANGED
@@ -61,6 +61,12 @@ mo.prime-pad {
|
|
61
61
|
padding-left: 0.08em;
|
62
62
|
}
|
63
63
|
|
64
|
+
/* \cancel & \phase use background images. Get them to print. */
|
65
|
+
menclose {
|
66
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
67
|
+
print-color-adjust: exact;
|
68
|
+
}
|
69
|
+
|
64
70
|
/* Array cell justification in Firefox & WebKit */
|
65
71
|
.tml-right {
|
66
72
|
text-align: right;
|
@@ -64,6 +64,12 @@ mo.prime-pad {
|
|
64
64
|
padding-left: 0.08em;
|
65
65
|
}
|
66
66
|
|
67
|
+
/* \cancel & \phase use background images. Get them to print. */
|
68
|
+
menclose {
|
69
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
70
|
+
print-color-adjust: exact;
|
71
|
+
}
|
72
|
+
|
67
73
|
/* Array cell justification in Firefox & WebKit */
|
68
74
|
.tml-right {
|
69
75
|
text-align: right;
|
@@ -61,6 +61,12 @@ mo.prime-pad {
|
|
61
61
|
padding-left: 0.08em;
|
62
62
|
}
|
63
63
|
|
64
|
+
/* \cancel & \phase use background images. Get them to print. */
|
65
|
+
menclose {
|
66
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
67
|
+
print-color-adjust: exact;
|
68
|
+
}
|
69
|
+
|
64
70
|
/* Array cell justification in Firefox & WebKit */
|
65
71
|
.tml-right {
|
66
72
|
text-align: right;
|
package/dist/Temml-Local.css
CHANGED
@@ -47,6 +47,12 @@ mo.prime-pad {
|
|
47
47
|
padding-left: 0.08em;
|
48
48
|
}
|
49
49
|
|
50
|
+
/* \cancel & \phase use background images. Get them to print. */
|
51
|
+
menclose {
|
52
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
53
|
+
print-color-adjust: exact;
|
54
|
+
}
|
55
|
+
|
50
56
|
/* Array cell justification in Firefox & WebKit */
|
51
57
|
.tml-right {
|
52
58
|
text-align: right;
|
package/dist/Temml-STIX2.css
CHANGED
@@ -51,6 +51,12 @@ mo.prime-pad {
|
|
51
51
|
padding-left: 0.08em;
|
52
52
|
}
|
53
53
|
|
54
|
+
/* \cancel & \phase use background images. Get them to print. */
|
55
|
+
menclose {
|
56
|
+
-webkit-print-color-adjust: exact; /* Chrome & Edge */
|
57
|
+
print-color-adjust: exact;
|
58
|
+
}
|
59
|
+
|
54
60
|
/* Array cell justification in Firefox & WebKit */
|
55
61
|
.tml-right {
|
56
62
|
text-align: right;
|