summaryrefslogtreecommitdiff
path: root/library/src/math/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-01-22 13:31:44 +0100
committerLaurenz <laurmaedje@gmail.com>2023-01-22 13:31:44 +0100
commitc5ef350cce93ef2813a5aaec12df604e1be4d146 (patch)
tree14d43da3a49c7cf945ddf1e1020a20da1e5477b0 /library/src/math/mod.rs
parentbcf20610fc4d5dcac43bf076c1ea0c9b433de0a0 (diff)
Under- and overbraces
Diffstat (limited to 'library/src/math/mod.rs')
-rw-r--r--library/src/math/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs
index c7b25db3..34eace04 100644
--- a/library/src/math/mod.rs
+++ b/library/src/math/mod.rs
@@ -5,6 +5,7 @@ mod ctx;
mod accent;
mod align;
mod atom;
+mod braced;
mod frac;
mod group;
mod matrix;
@@ -55,6 +56,8 @@ pub fn define(scope: &mut Scope) {
scope.def_func::<RootNode>("root");
scope.def_func::<VecNode>("vec");
scope.def_func::<CasesNode>("cases");
+ scope.def_func::<UnderbraceNode>("underbrace");
+ scope.def_func::<OverbraceNode>("overbrace");
scope.def_func::<BoldNode>("bold");
scope.def_func::<ItalicNode>("italic");
scope.def_func::<SerifNode>("serif");