2014-06-23 19:07:58 +00:00
|
|
|
### Wichtig ###
|
|
|
|
* Compiler --> XeLaTeX
|
|
|
|
* Compilierfolge: XeLaTeX --> Bib(la)tex --> XeLaTeX --> XeLaTeX
|
|
|
|
* An Main Datei nur Includierung ändern!
|
|
|
|
Dies Bitte beachten!
|
|
|
|
|
|
|
|
### Konventionen ###
|
|
|
|
Jedes Kapitel/Unterkapitel hat eine eigene Datei, welche der Ordner- und Dateistriktur: /Kaptitel/nnn/nn.tex folgt.
|
2014-06-23 19:08:15 +00:00
|
|
|
Eingebunden wird über:
|
2014-06-23 19:07:58 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
#!tex
|
|
|
|
|
|
|
|
\include{./Kaptitel/nnn/nn.tex}
|
2014-06-23 19:09:54 +00:00
|
|
|
```
|
|
|
|
Also z.B. Kapitel 1:
|
|
|
|
```
|
|
|
|
#!tex
|
|
|
|
|
|
|
|
\include{./Kaptitel/001/10.tex}
|
|
|
|
```
|
|
|
|
Kapitel 1.1:
|
|
|
|
```
|
|
|
|
#!tex
|
|
|
|
|
|
|
|
\include{./Kaptitel/001/11.tex}
|
2014-06-23 19:08:15 +00:00
|
|
|
```
|