https://github.com/jaycech3n/math
scribbles
https://github.com/jaycech3n/math
blogging latex mathematics writeups
Last synced: 12 months ago
JSON representation
scribbles
- Host: GitHub
- URL: https://github.com/jaycech3n/math
- Owner: jaycech3n
- Created: 2022-02-02T17:49:43.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T14:30:21.000Z (about 3 years ago)
- Last Synced: 2025-01-29T20:48:48.096Z (about 1 year ago)
- Topics: blogging, latex, mathematics, writeups
- Language: TeX
- Homepage: https://joshchen.io/math
- Size: 973 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
These are my (work-in-progress, often incomplete) online math notes, based on the excellent tool [Krater][1].
Notes (stored in `_notes`) are written in a combination of Markdown and LaTeX (see the Krater [readme][2] and [sample page][3] for the basics), with the following extra LaTeX-like functionality:
### Sections and numbering
```
{% section Heading %}
{% subsection Subheading %}
{% subsubsection Subsubheading %}
```
Turn on numbering with
`section-numbers: true`
in front matter.
### Theorem blocks
```
{% theorem Lévy reflection principle %}
etc. etc.
{% endtheorem %}
```
generates the appropriate permalinked block and heading.
Optional numbering with `theorem-numbers: true` in front matter.
Also available are `lemma`, `proposition`, `definition`, `notation`, `remark`.
### Labels
```
{% labeled choose-your-own-reference-name %}
Equation, diagram, etc. goes here
{% endlabeled %}
```
generates the appropriate numbered label.
There's currently no support for custom labels.
### Intra-document references
```
{% ref use-your-chosen-reference-names %}
```
for equation referencing, or
```
{% ref the full heading of a section/theorem block also works (case-insensitive) %}
```
Turning on numbering is suggested with the latter.
### Todo tags
`{% todo %}` or `{% todo write a note to self %}` for all your shopping list needs.
[1]: https://github.com/paolobrasolin/krater
[2]: https://github.com/paolobrasolin/krater/blob/main/README.md
[3]: https://github.com/paolobrasolin/krater/blob/main/index.md