Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand All @@ -20,10 +20,10 @@ jobs:
run: brew install typst
- name: Install fonts
run: brew install --cask font-twitter-color-emoji
- name: Build PDF
run: typst compile undergradmath.typ
- name: Build PDF with PDF/UA-1
run: typst compile --pdf-standard ua-1 undergradmath.typ
- name: Upload PDF as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: Undergradmath
path: undergradmath.pdf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: ${{ steps.output-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand All @@ -30,7 +30,7 @@ jobs:
git rev-list -n 1 "tags/${{ steps.check-tag.outputs.previous_tag }}" >> $GITHUB_OUTPUT
- name: Check changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: ${{ steps.get-base.outputs.base }}
- name: Output the version
Expand All @@ -52,7 +52,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand All @@ -67,7 +67,7 @@ jobs:
git cliff -vv -t ${{ needs.check-version.outputs.version }} -o CHANGELOG.md
- name: Add changelog and commit
id: add-changelog
uses: EndBug/add-and-commit@v9
uses: EndBug/add-and-commit@v10
with:
add: 'CHANGELOG.md'
author_name: github-actions[bot]
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/watch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
modified: ${{ contains(steps.changed-files.outputs.modified_files, 'undergradmath.typ') }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Check changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
- name: List all modified files
run: |
echo "List all the files that have been modified: ${{ steps.changed-files.outputs.modified_files }}"
Expand All @@ -24,17 +24,17 @@ jobs:
if: needs.check-changed.outputs.modified == 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Update Homebrew
run: brew update
- name: Install Typst
run: brew install typst
- name: Install fonts
run: brew install --cask font-twitter-color-emoji
- name: Build PDF
run: typst compile undergradmath.typ
- name: Build PDF with PDF/UA-1
run: typst compile --pdf-standard ua-1 undergradmath.typ
- name: Upload PDF as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: Undergradmath
path: undergradmath.pdf
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ The following limitations are also annotated in the [document][latest-release].
- [x] ~Script letters, such as $\mathscr{P}$ form `\mathscr{P}`, are unavailable.~
It's possible to get script letters like $\mathscr{P}$ from `cal(P)` by changing the [`stylistic-set` of the `text()` function].
The stylistic set to apply is font-specific, so it's necessary to consult the font to know which set is desired.
As from `typst v0.14.0`, $\mathscr{P}$ can be easily obtained with `scr(P)`.
See `scr` for more information.
- [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`.
- [x] $\emptyset$ from `\emptyset` is available in Typst as `nothing`, while $\varnothing$ from `\varnothing` is not.
Expand Down
Loading