An open API service indexing awesome lists of open source software.

https://github.com/nymann/portfolio-assignment


https://github.com/nymann/portfolio-assignment

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Basic LaTeX template

## Preview
![record](https://user-images.githubusercontent.com/7005867/117787126-72e50a80-b246-11eb-940a-776212d3f053.gif)

## 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 .
```