Skip to content

Commit

Permalink
feat: use sigma.alt
Browse files Browse the repository at this point in the history
  • Loading branch information
johanvx committed Jun 15, 2023
1 parent 1540948 commit 44c80e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ A [Typst] port of [undergradmath].
The following limitations are also annotated in the [document][latest-release].

- [ ] Script letters, such as $\mathscr{P}$ form `\mathscr{P}`, are unavailable.
- [ ] Greek letter $\varsigma$ `\u{03C2}` from `\varsigma` is not defined as a symbol and should probably be defined as `sigma.alt`.
- [x] ~Greek letter $\varsigma$ `\u{03C2}` from `\varsigma` is not defined as a symbol and should probably be defined as `sigma.alt`.~
`sigma.alt` is available as from `typst v0.5.0`.
See [typst/typst/pull/1203].
- [x] $\emptyset$ from `\emptyset` is available in Typst as `nothing`, while $\varnothing$ from `\varnothing` is not.
May need a `let` binding with some specific fonts.
See the Version 3.93 section of README at https://www.ctan.org/tex-archive/fonts/newcomputermodern.
Expand Down Expand Up @@ -38,5 +40,6 @@ The following limitations are also annotated in the [document][latest-release].
[Like undergradmath]: https://gitlab.com/jim.hefferon/undergradmath/-/blob/5b19eff74454f7c71664f85e8042d7b30fcf9cfb/LICENSE
[mathabx]: https://www.ctan.org/tex-archive/fonts/mathabx
[siunitx]: https://www.ctan.org/pkg/siunitx
[typst/typst/pull/1203]: https://github.com/typst/typst/pull/1203
[Typst]: https://github.com/typst/typst
[undergradmath]: https://gitlab.com/jim.hefferon/undergradmath
2 changes: 1 addition & 1 deletion undergradmath.typ
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Getting script letters is @unavailable.
cell($epsilon.alt$, `epsilon.alt`), cell($rho$, `rho`),
cell($epsilon$, `epsilon`), cell($rho.alt$, `rho.alt`),
cell($zeta$, `zeta`), cell([$sigma$, $Sigma$], [`sigma`, `Sigma`]),
cell($eta$, `eta`), cell($\u{03C2}$, [`\u{03C2}` @tricky]),
cell($eta$, `eta`), cell($sigma.alt$, `sigma.alt`),
cell([$theta$, $Theta$], [`theta`, `Theta`]), cell($tau$, `tau`),
cell($theta.alt$, `theta.alt`), cell([$upsilon$, $Upsilon$], [`upsilon`, `Upsilon`]),
cell($iota$, `iota`), cell([$phi.alt$, $Phi$], [`phi.alt`, `Phi`]),
Expand Down

0 comments on commit 44c80e2

Please sign in to comment.