mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-09 04:58:40 +00:00
feat: unicode support for minus and asterisk operators (#3227)
Fixes #3225
This commit is contained in:
@@ -187,7 +187,7 @@ $\allowbreak α β γ δ ϵ ζ η θ ι κ λ μ ν ξ o π \allowbreak ρ σ τ
|
||||
|$\daleth$ `\daleth`|$\hbar$ `\hbar`|$\real$ `\real`|$\text{\AE}$ `\text{\AE}`
|
||||
|$\eth$ `\eth`|$\hslash$ `\hslash`|$\reals$ `\reals`|$\text{\oe}$ `\text{\oe}`
|
||||
|
||||
Direct Input: $∂ ∇ ℑ Ⅎ ℵ ℶ ℷ ℸ ⅁ ℏ ð$
|
||||
Direct Input: $∂ ∇ ℑ Ⅎ ℵ ℶ ℷ ℸ ⅁ ℏ ð − ∗$
|
||||
ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝÞßàáâãäåçèéêëìíîïðñòóôöùúûüýþÿ
|
||||
|
||||
</div>
|
||||
|
@@ -534,9 +534,9 @@ defineSymbol(math, main, mathord, "\u03d6", "\\varpi", true);
|
||||
defineSymbol(math, main, mathord, "\u03f1", "\\varrho", true);
|
||||
defineSymbol(math, main, mathord, "\u03c2", "\\varsigma", true);
|
||||
defineSymbol(math, main, mathord, "\u03c6", "\\varphi", true);
|
||||
defineSymbol(math, main, bin, "\u2217", "*");
|
||||
defineSymbol(math, main, bin, "\u2217", "*", true);
|
||||
defineSymbol(math, main, bin, "+", "+");
|
||||
defineSymbol(math, main, bin, "\u2212", "-");
|
||||
defineSymbol(math, main, bin, "\u2212", "-", true);
|
||||
defineSymbol(math, main, bin, "\u22c5", "\\cdot", true);
|
||||
defineSymbol(math, main, bin, "\u2218", "\\circ");
|
||||
defineSymbol(math, main, bin, "\u00f7", "\\div", true);
|
||||
|
Reference in New Issue
Block a user