Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 (16 days ago)
- Default Branch: main
- Last Pushed: 2025-01-05T12:15:50.000Z (6 days ago)
- Last Synced: 2025-01-05T13:19:05.160Z (6 days ago)
- Language: Typst
- Size: 536 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/).
## 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.### Example
To for example, specify the local git revision as the `REV`, you can do the following:
```
typst watch cheat_sheet.typ --open --input REV=$(git rev-parse --short HEAD)
```