diff --git a/slides/chapter-04.en.md b/slides/chapter-04.en.md index 67e7be7..3e11b2b 100644 --- a/slides/chapter-04.en.md +++ b/slides/chapter-04.en.md @@ -249,8 +249,8 @@ A structured project @content * Remove the preamble, both of the `document` lines, and the table of contents from `allgemeines.tex`. -* ++ Compile `l2kurz.tex` instead—it is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically. -* ++ The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `preamble.tex` and include it with `\input{preamble}`. +* ++ Compile `l2kurz.tex` instead. This is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically. +* ++ The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `preamble.tex` and include it using `\input{preamble}`. * ++ **Technical note:** When a popup opens during compilation, please choose option “(c) use the default command.” @@ -264,7 +264,7 @@ A structured project @content * To avoid long compilation times, you should should only include the sections `einleitung.tex` and `allgemeines.tex` for now. -* ++ For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements und then use `\includeonly`. +* ++ For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements. +* ++ Place the `\includeonly` statement directly **before** `\begin{document}`. * ++ **Caution:** The preamble still needs to be included via `\input`. -* ++ Put the `\includeonly` statement directly above `\begin{document}`.