1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
% LTeX: language=de-DE
% \documentclass[11pt, a4paper, fleqn, titlepage, oneside]{book}
\documentclass[11pt, a4paper, fleqn, titlepage, oneside, twocolumn]{book}
\input{headers/preamble.tex}
\input{headers/preamble_local.tex}
\title{\textbf{Bau und Evaluation eines günstigen Raman Spektrometers}}
\date{\DTMToday}
% For the copyright section
\years{2024}
\authors{Benedikt Peetz}
\makeatletter
\hypersetup{
pdftitle={Facharbeit in Chemie},
pdfsubject={\@title},
pdfauthor={\@authors},
pdfkeywords={Raman, Facharbeit},
colorlinks,
linkcolor={black},
citecolor={black},
urlcolor={blue!80!black}
}
\makeatother
% \includeonly{content/01_zusammenfassung/chapter.tex}
\begin{document}
\input{content/static/title.tex}
\include{content/01_zusammenfassung/chapter.tex}
\include{content/static/table_of_contents.tex}
\include{content/03_einleitung/chapter.tex}
\include{content/04_grundlagen_des_themas/chapter.tex}
\include{content/05_aufbau/chapter.tex}
\include{content/07_bewertung_der_ergebnisse/chapter.tex}
\include{content/08_diskussion/chapter.tex} % auch: Zusammenfassung
\include{content/10_ausblick/chapter.tex}
% NEXT_CHAPTER
\appendix
\input{content/static/bibliography.tex}
\include{content/static/links.tex}
\input{content/static/table_of_figures.tex}
\include{content/12_img_2_plot_code/chapter.tex}
\include{content/11_bilder_in_voller_grösse/chapter.tex}
\include{content/12_schlusserklaerung/chapter.tex}
\end{document}
|