summaryrefslogtreecommitdiff
path: root/library/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-12-07 12:33:48 +0100
committerLaurenz <laurmaedje@gmail.com>2022-12-07 14:01:20 +0100
commit11c7ceb29e762f6dd1d093d9fdb57e9612a92df0 (patch)
treecf68d1d206a4718dd20f4dd8de8e6edc931012e1 /library/src/lib.rs
parente1c0cda6c8505ad2efc347afc80868296e56cb62 (diff)
Extend math library
Diffstat (limited to 'library/src/lib.rs')
-rw-r--r--library/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/library/src/lib.rs b/library/src/lib.rs
index 29a6cc94..e41e7c0d 100644
--- a/library/src/lib.rs
+++ b/library/src/lib.rs
@@ -51,10 +51,22 @@ fn scope() -> Scope {
// Math.
std.def_node::<math::MathNode>("math");
std.def_node::<math::AtomNode>("atom");
+ std.def_node::<math::AccNode>("acc");
std.def_node::<math::FracNode>("frac");
+ std.def_node::<math::BinomNode>("binom");
std.def_node::<math::SqrtNode>("sqrt");
+ std.def_node::<math::FloorNode>("floor");
+ std.def_node::<math::CeilNode>("ceil");
std.def_node::<math::VecNode>("vec");
std.def_node::<math::CasesNode>("cases");
+ std.def_node::<math::SerifNode>("serif");
+ std.def_node::<math::SansNode>("sans");
+ std.def_node::<math::BoldNode>("bold");
+ std.def_node::<math::ItalNode>("ital");
+ std.def_node::<math::CalNode>("cal");
+ std.def_node::<math::FrakNode>("frak");
+ std.def_node::<math::MonoNode>("mono");
+ std.def_node::<math::BbNode>("bb");
// Layout.
std.def_node::<layout::PageNode>("page");