https://github.com/nymann/portfolio-assignment
https://github.com/nymann/portfolio-assignment
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nymann/portfolio-assignment
- Owner: nymann
- License: bsd-2-clause
- Created: 2021-05-13T19:22:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-21T21:03:01.000Z (about 5 years ago)
- Last Synced: 2025-12-13T21:27:09.611Z (6 months ago)
- Language: TeX
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Basic LaTeX template
## Preview

## Workflows
I have a terminal window open with `ls report.tex chapters/*.tex | entr make`
and `report.pdf` open in Zathura. This way when I make any changes to any of the
TeX files the report is automatically recompiled thanks to `entr` and Zathura
automatically refreshes the document.
##### GNU Make
| Command | Description |
| --- | --- |
| `make` | Compiles the `report.tex` file. |
| `make clean` | Cleans the directory for any build files. |
##### Docker
A simple `Dockerfile` is provided if you are in an environment with Docker but
without TexLive. This is how you use it:
```sh
docker build -t my_report -f Dockerfile .
docker run --detach=true --tty=true --name my_report_container my_report
docker cp my_report_container:/doc/report.pdf .
```