Corrections chapter 4

This commit is contained in:
Amma 2020-06-12 13:01:45 +02:00
parent 0bd39def2f
commit e964003387

View File

@ -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}`.