Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmitrii-artuhov/hse-summaries
HSE summaries since second year of studying (2022+)
https://github.com/dmitrii-artuhov/hse-summaries
hse-ami latex
Last synced: about 1 month ago
JSON representation
HSE summaries since second year of studying (2022+)
- Host: GitHub
- URL: https://github.com/dmitrii-artuhov/hse-summaries
- Owner: dmitrii-artuhov
- Created: 2022-09-05T16:57:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-15T14:11:59.000Z (over 1 year ago)
- Last Synced: 2023-06-15T17:41:27.008Z (over 1 year ago)
- Topics: hse-ami, latex
- Language: TeX
- Homepage:
- Size: 72.3 MB
- Stars: 14
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lectures conspects.
## What is this repo?
Here will be lectures for study terms >=3. Conspects for term 1 and 2 can be found [here](https://github.com/khbminus/HSE-summaries).Want to contribute, fulfill `% todo: ...` comment in latex code, and/or found a mistake? Follow the instructions below.
## Setup locally
- [Install MiKTeX](https://miktex.org/download) (latex compiling toolchain).
- On Windows you need to install perl, you can install [strawberry perl](https://strawberryperl.com/).
- Install [VS Code](https://code.visualstudio.com/download) (I prefer it due to vast number of plugins) and plugin [Latex Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop).
- Follow the [link](https://youtu.be/4lyHIQl4VM8) to set up MiKTeX with the installed plugin.
- To compile the project you need to use `lualatex` compiler. To set it as a default compiler (so it is used automatically when you save the project) edit `setting.json` for the extension:
```js
{
"latex-workshop.latex.recipes": [
{
"name": "latexmk (lualatex)",
"tools": [
"lualatexmk"
]
},
...
]
}
```
- Before compiling you also need to install some fonts in your system (donwload zip from [here](/fonts/Fonts.zip)). PS. If some fonts are missing inform me about it!
- Also you need to have [python](https://www.python.org/downloads/) installed.## How to contribute
- Clone the project: `git clone https://github.com/dmitrii-artuhov/HSE-summaries.git`
- Edit some latex code, keep the same folder structure, everything related to editing latex is self explanatory (see `/src` folder).
- Create PR with the amendmends, set its target to `master` branch.
- Before pushing, don't forget to run `python3 ./build.py` so the pdf files are generated and saved to `/pdf` folder.