https://github.com/yous/homework
Simple homework template based on LaTeX
https://github.com/yous/homework
Last synced: 2 months ago
JSON representation
Simple homework template based on LaTeX
- Host: GitHub
- URL: https://github.com/yous/homework
- Owner: yous
- Created: 2016-03-14T05:40:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T14:42:08.000Z (about 7 years ago)
- Last Synced: 2025-02-10T21:19:05.092Z (4 months ago)
- Language: Perl
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Homework
Simple homework template based on LaTeX.
## Setup
### Ubuntu
``` sh
apt-get install texlive texlive-latex-extra latexmk
pip install Pygments
```### Arch Linux
``` sh
pacman -S texlive-core texlive-latexextra
pip install Pygments
```## Commands
Following command will build `homework.tex` and generate `homework.pdf`.
``` sh
latexmk
```Run a file previewer with:
``` sh
latexmk -pv
```Run a file previewer and automatically update the output files:
``` sh
latexmk -pvc
```Clean up regeneratable files:
``` sh
latexmk -c
```Clean up regeneratable files with the addition of output files:
``` sh
latexmk -C
```