summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/typst/src/symbols/sym.rs15
1 files changed, 13 insertions, 2 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs
index 7520c14e..d506880b 100644
--- a/crates/typst/src/symbols/sym.rs
+++ b/crates/typst/src/symbols/sym.rs
@@ -186,10 +186,12 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! {
circle.arrow: '⟴',
circle.big: '⨁',
dot: '∔',
+ double: '⧺',
minus: '±',
small: '﹢',
square: '⊞',
triangle: '⨹',
+ triple: '⧻',
],
minus: [
'−',
@@ -395,7 +397,12 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! {
],
// Calculus.
- infinity: '∞',
+ infinity: [
+ '∞',
+ bar: '⧞',
+ incomplete: '⧜',
+ tie: '⧝',
+ ],
oo: '∞',
diff: '∂', // Deprecation planned
partial: '∂',
@@ -444,7 +451,11 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! {
// Function and category theory.
compose: '∘',
convolve: '∗',
- multimap: '⊸',
+ multimap: ['⊸', double: '⧟'],
+
+ // Game theory.
+ tiny: '⧾',
+ miny: '⧿',
// Number theory.
divides: ['∣', not: '∤'],