diff options
| author | Malo <57839069+MDLC01@users.noreply.github.com> | 2024-08-26 18:39:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-26 16:39:10 +0000 |
| commit | 307b8a5c72e09ffdde8cb8796745e24f9fd62651 (patch) | |
| tree | f9e2bd4084008aaf2871c79b1d1d35c5c7dd9938 /crates | |
| parent | c57593c94c5ad9d08c93d594feb9a1db8c5e696d (diff) | |
Add more `emptyset`/`nothing` symbol variants (#4826)
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/typst/src/symbols/sym.rs | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs index f2a32dfa..3957f8bf 100644 --- a/crates/typst/src/symbols/sym.rs +++ b/crates/typst/src/symbols/sym.rs @@ -332,8 +332,22 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { image: '⊷', // Set theory. - emptyset: ['∅', rev: '⦰'], - nothing: ['∅', rev: '⦰'], + emptyset: [ + '∅', + bar: '⦱', + circle: '⦲', + larrow: '⦴', + rarrow: '⦳', + rev: '⦰', + ], + nothing: [ + '∅', + bar: '⦱', + circle: '⦲', + larrow: '⦴', + rarrow: '⦳', + rev: '⦰', + ], without: '∖', complement: '∁', in: [ |
