diff options
| author | Malo <57839069+MDLC01@users.noreply.github.com> | 2024-08-26 17:59:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-26 15:59:50 +0000 |
| commit | cd62a19344e60457b2bc0f493f709fb5d88fc9e1 (patch) | |
| tree | 51cdb1ee86915830b65fea312d72c7307cd4ba15 | |
| parent | 326fd3380151551538d6f245f884d174551bdf0f (diff) | |
Add U-shaped arrows (#4807)
| -rw-r--r-- | crates/typst/src/symbols/sym.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs index 02d8ac42..7520c14e 100644 --- a/crates/typst/src/symbols/sym.rs +++ b/crates/typst/src/symbols/sym.rs @@ -639,6 +639,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { r.long.bar: '⟼', r.bar: '↦', r.curve: '⤷', + r.turn: '⮎', r.dashed: '⇢', r.dotted: '⤑', r.double: '⇒', @@ -665,6 +666,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { #[call(crate::math::accent::arrow_l)] l: '←', l.bar: '↤', l.curve: '⤶', + l.turn: '⮌', l.dashed: '⇠', l.dotted: '⬸', l.double: '⇐', @@ -692,6 +694,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { t: '↑', t.bar: '↥', t.curve: '⤴', + t.turn: '⮍', t.dashed: '⇡', t.double: '⇑', t.filled: '⬆', @@ -703,6 +706,7 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { b: '↓', b.bar: '↧', b.curve: '⤵', + b.turn: '⮏', b.dashed: '⇣', b.double: '⇓', b.filled: '⬇', |
