rfics-presentation/README.md
2024-08-29 18:44:50 +02:00

23 lines
356 B
Markdown

# RFICS Presentation
LaTeX sources for a presentation of a paper for the RFICS exam.
## Build
### Build manually
```bash
$ make
```
### Build using docker
1. Build docker image
```bash
$ docker build -f Dockerfile . -t rfics
```
2. Build presentation
```bash
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` rfics make
```