summaryrefslogtreecommitdiff
path: root/library/src/math/mod.rs
diff options
context:
space:
mode:
authorsitandr <60141933+sitandr@users.noreply.github.com>2023-05-23 12:22:27 +0300
committerGitHub <noreply@github.com>2023-05-23 11:22:27 +0200
commit5dbc15ef0c48cb024205ac84f295fdffef985374 (patch)
tree2a9fe2c595fc422f9e0d2d9d068381a2ee5502b2 /library/src/math/mod.rs
parent752817ae74607ca23ec0aad51824ddca66faa7a8 (diff)
Forced size command in math (#1128)
Diffstat (limited to 'library/src/math/mod.rs')
-rw-r--r--library/src/math/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs
index f0e42e68..3a067c1b 100644
--- a/library/src/math/mod.rs
+++ b/library/src/math/mod.rs
@@ -100,6 +100,11 @@ pub fn module() -> Module {
math.define("mono", mono);
math.define("bb", bb);
+ math.define("display", display);
+ math.define("inline", inline);
+ math.define("script", script);
+ math.define("sscript", sscript);
+
// Text operators.
math.define("op", OpElem::func());
op::define(&mut math);