Skip to content

Commit

Permalink
Merge pull request #2135 from Omikhleia/fix-math-tex-greek-aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque authored Oct 29, 2024
2 parents 6d959f3 + dcca7c8 commit e78a407
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions packages/math/unicode-symbols.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2567,10 +2567,12 @@ symbols.alpha = "α"
symbols.beta = "β"
symbols.gamma = "γ"
symbols.delta = "δ"
symbols.epsilon = "ε"
symbols.epsilon = "ϵ"
symbols.varepsilon = "ε"
symbols.zeta = "ζ"
symbols.eta = "η"
symbols.theta = "θ"
symbols.vartheta = "ϑ"
symbols.iota = "ι"
symbols.kappa = "κ"
symbols.lambda = "λ"
Expand All @@ -2579,11 +2581,15 @@ symbols.nu = "ν"
symbols.xi = "ξ"
symbols.omicron = "ο"
symbols.pi = "π"
symbols.varpi = "ϖ"
symbols.rho = "ρ"
symbols.varrho = "ϱ"
symbols.sigma = "σ"
symbols.varsigma = "ς"
symbols.tau = "τ"
symbols.upsilon = "υ"
symbols.phi = "φ"
symbols.phi = "ϕ"
symbols.varphi = "φ"
symbols.chi = "χ"
symbols.psi = "ψ"
symbols.omega = "ω"
Expand Down
4 changes: 2 additions & 2 deletions tests/math-bigops.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ Integrals, display (large font), MathML:
Integrals, text, TeX:
<math>
\oiint_S \mi[mathvariant=bold]{E} \cdot
\mi[mathvariant=bold]{dS} = \frac{1}{\epsilon_0}
\mi[mathvariant=bold]{dS} = \frac{1}{\varepsilon_0}
\iiint_V \rho \mi[mathvariant=normal]{dV}
= \int_0^x {f(t)\mo{d}t}
</math>

Integrals, display, TeX:
<math mode="display">
\oiint_S \mi[mathvariant=bold]{E} \cdot
\mi[mathvariant=bold]{dS} = \frac{1}{\epsilon_0}
\mi[mathvariant=bold]{dS} = \frac{1}{\varepsilon_0}
\iiint_V \rho \mi[mathvariant=normal]{dV}
= \int_0^x {f(t)\mo{d}t}
</math>
Expand Down

0 comments on commit e78a407

Please sign in to comment.