23 lines
391 B
Markdown
23 lines
391 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 dockerfiles/Dockerfile.alpine . -t cel-presentation
|
|
```
|
|
1. Build examples
|
|
```bash
|
|
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` cel-presentation make
|
|
```
|