Readme #15

Merged
Brain merged 6 commits from dancingCycle/handbuch-gen:readme into main 2022-11-22 21:10:22 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b67f892ed5 - Show all commits

View File

@ -43,7 +43,7 @@ For pdf output the LaTeX builder is used, so `latex` and `pdflatex` need to be i
sudo apt install texlive-base texlive-latex-base texlive-latex-extra texlive-lang-german texlive-fonts-extra --no-install-recommends
```
For document generation `make` and latexmk` is required.
For document generation `make` and `latexmk` is required.
Outdated
Review

Could be summarized into one apt-get command. If readability is a concern, linebreaks can be applied like this:

sudo apt-get --no-install-recommends install \
  texlive-base \
  texlive-latex-base \
  ...
Could be summarized into one `apt-get` command. If readability is a concern, linebreaks can be applied like this: ```bash sudo apt-get --no-install-recommends install \ texlive-base \ texlive-latex-base \ ... ```
### Running the document generation via make