mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-08 12:38:39 +00:00
feat: support Unicode ◯, U+25EF (#2430)
* Support Unicode U+25EF \bigcirc * Update documentation
This commit is contained in:
@@ -363,7 +363,7 @@ Direct Input: $∫ ∬ ∭ ∮ ∏ ∐ ∑ ⋀ ⋁ ⋂ ⋃ ⨀ ⨁ ⨂ ⨄ ⨆$
|
||||
| $\Cap$ `\Cap`| $\doublecap$ `\doublecap`| $\oslash$ `\oslash`| $\wedge$ `\wedge` |
|
||||
| $\cap$ `\cap`| $\doublecup$ `\doublecup`| $\pm$ `\pm` or `\plusmn` | $\wr$ `\wr` |
|
||||
|
||||
Direct Input: $+ - / * ⋅ ± × ÷ ∓ ∔ ∧ ∨ ∩ ∪ ≀ ⊎ ⊓ ⊔ ⊕ ⊖ ⊗ ⊘ ⊙ ⊚ ⊛ ⊝$
|
||||
Direct Input: $+ - / * ⋅ ± × ÷ ∓ ∔ ∧ ∨ ∩ ∪ ≀ ⊎ ⊓ ⊔ ⊕ ⊖ ⊗ ⊘ ⊙ ⊚ ⊛ ⊝ ◯$
|
||||
|
||||
### Fractions and Binomials
|
||||
|
||||
|
@@ -168,7 +168,7 @@ defineSymbol(math, main, bin, "\u228e", "\\uplus", true);
|
||||
defineSymbol(math, main, bin, "\u2293", "\\sqcap", true);
|
||||
defineSymbol(math, main, bin, "\u2217", "\\ast");
|
||||
defineSymbol(math, main, bin, "\u2294", "\\sqcup", true);
|
||||
defineSymbol(math, main, bin, "\u25ef", "\\bigcirc");
|
||||
defineSymbol(math, main, bin, "\u25ef", "\\bigcirc", true);
|
||||
defineSymbol(math, main, bin, "\u2219", "\\bullet");
|
||||
defineSymbol(math, main, bin, "\u2021", "\\ddagger");
|
||||
defineSymbol(math, main, bin, "\u2240", "\\wr", true);
|
||||
|
@@ -3653,7 +3653,7 @@ describe("Unicode", function() {
|
||||
});
|
||||
|
||||
it("should build binary operators", function() {
|
||||
expect("±×÷∓∔∧∨∩∪≀⊎⊓⊔⊕⊖⊗⊘⊙⊚⊛⊝⊞⊟⊠⊡⊺⊻⊼⋇⋉⋊⋋⋌⋎⋏⋒⋓⩞\u22C5").toBuild(strictSettings);
|
||||
expect("±×÷∓∔∧∨∩∪≀⊎⊓⊔⊕⊖⊗⊘⊙⊚⊛⊝◯⊞⊟⊠⊡⊺⊻⊼⋇⋉⋊⋋⋌⋎⋏⋒⋓⩞\u22C5").toBuild(strictSettings);
|
||||
});
|
||||
|
||||
it("should build delimiters", function() {
|
||||
|
Reference in New Issue
Block a user