Fix mistakes in README.md

This commit is contained in:
Andreas Tsouchlos 2023-12-23 18:51:34 +01:00
parent d3a7cdc3ee
commit 45224e1d3b

View File

@ -7,7 +7,7 @@ Repository containing common latex code that can be shared across multiple proje
Put
```latex
\input{common.tex}
\input{/path/to/common.tex}
```
in your preamble. See the `examples` folder for usage examples.
@ -17,7 +17,7 @@ in your preamble. See the `examples` folder for usage examples.
### Build manually
```bash
$ latexmk example.tex
$ make
```
### Build using docker
@ -28,6 +28,6 @@ $ latexmk example.tex
```
2. Build example
```bash
$ docker run --rm -v $PWD:$PWD -w $PWD `id -u`:`id -g` latex-common latexmk example.tex
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` latex-common make
```