From 45224e1d3bc8699ea17f93c2fc4dab35c88e4e44 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Sat, 23 Dec 2023 18:51:34 +0100 Subject: [PATCH] Fix mistakes in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 09489d3..53520dc 100644 --- a/README.md +++ b/README.md @@ -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 ```