Add hints about modularization and structure of source code
This commit is contained in:
parent
1d61f14e9e
commit
f9e595b78a
4 changed files with 55 additions and 0 deletions
14
codebeispiele/example-filestructure.txt
Normal file
14
codebeispiele/example-filestructure.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
|- main.tex # (includes every chapter*/chapter*.tex)
|
||||
|- (preamble.tex) # (can also be included in main.tex)
|
||||
|- chapter1
|
||||
| - chapter1.tex # (first paragraph of chapter
|
||||
and includes all sections)
|
||||
| - section1.tex
|
||||
| - section2.tex
|
||||
|- chapter2
|
||||
...
|
||||
|- bib
|
||||
| - book.bib
|
||||
| - thesis.bib
|
||||
|- graphics
|
||||
|- code
|
8
codebeispiele/lists-in-toc.tex
Normal file
8
codebeispiele/lists-in-toc.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\documentclass[
|
||||
listof=totoc,
|
||||
index=totoc,
|
||||
bibliography=totoc,
|
||||
...
|
||||
]
|
||||
|
||||
\setuptoc{toc}{totoc} % Nur wenn benötigt
|
9
codebeispiele/parts-of-document.tex
Normal file
9
codebeispiele/parts-of-document.tex
Normal file
|
@ -0,0 +1,9 @@
|
|||
\frontmatter % nur in Büchern
|
||||
% römische Seitenzahlen
|
||||
% Titelblatt, Verzeichnisse
|
||||
|
||||
\mainmatter % nur in Büchern
|
||||
% Inhalt, Kapitel
|
||||
|
||||
\appendix
|
||||
% Anhang
|
Loading…
Add table
Add a link
Reference in a new issue