23 lines
376 B
Markdown
23 lines
376 B
Markdown
# CEL Presentation
|
|
|
|
LaTeX sources for a presentation held at CEL on the 21.06.2024.
|
|
|
|
## Build
|
|
|
|
### Build manually
|
|
|
|
```bash
|
|
$ make
|
|
```
|
|
|
|
### Build using docker
|
|
|
|
1. Build docker image
|
|
```bash
|
|
$ docker build -f Dockerfile . -t hiwi-presentations
|
|
```
|
|
1. Build examples
|
|
```bash
|
|
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` hiwi-presentations make
|
|
```
|