https://github.com/quiode/analysis_ii_cheat_sheet
This is a mirror of https://gitlab.dominik-schwaiger.ch/quio/Analysis_II_Cheat_Sheet
https://github.com/quiode/analysis_ii_cheat_sheet
Last synced: 4 months ago
JSON representation
This is a mirror of https://gitlab.dominik-schwaiger.ch/quio/Analysis_II_Cheat_Sheet
- Host: GitHub
- URL: https://github.com/quiode/analysis_ii_cheat_sheet
- Owner: quiode
- License: mit
- Created: 2024-12-26T22:19:12.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-24T10:46:24.000Z (5 months ago)
- Last Synced: 2025-01-24T11:28:17.636Z (5 months ago)
- Language: Typst
- Size: 662 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Analysis II Cheat Sheet
A Cheat Sheet for the Analysis II Course at ETHZ.
Written in [typst](https://typst.app/docs/).
## Download
You can download the latest version of the cheatsheet here:
- [Normal Version](https://gitlab.dominik-schwaiger.ch/api/v4/projects/9/jobs/artifacts/main/raw/cheat_sheet.pdf?job=build)
- [Cringe Version (without cats)](https://gitlab.dominik-schwaiger.ch/api/v4/projects/9/jobs/artifacts/main/raw/cheat_sheet-no_cats.pdf?job=build)## Development
To compile the pdf run `typst watch cheat_sheet.typ --open`.
## Inputs
The document supports a couple of inputs to allow customization at build time. These include:
- `REV`: Revision name shown in the footer of the pdf, default is `local`. Mainly used in CI to show the git hash.
- `CATS`: Boolean ("true" or "false") which determine if the cat images should be included, default is "true"### Example
To for example, specify the local git revision as the `REV`, you can do the following:
```bash
typst watch cheat_sheet.typ --open --input REV=$(git rev-parse --short HEAD)
```