-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolarzellen.tex
58 lines (46 loc) · 1.38 KB
/
Solarzellen.tex
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
56
57
58
\documentclass{article}
% imports
\usepackage{xcolor} % colorize text
\usepackage{graphicx} % images
\usepackage{hyperref} % hyperlinks
\usepackage{float} % better image positioning
\usepackage{gensymb} % include degree in math mode
% overrides & setup
\usepackage[nottoc,numbib]{tocbibind} % include refs in toc
\usepackage[figurename=Abbildung]{caption} % rename figures
\renewcommand{\refname}{Quellen} % rename references
\renewcommand{\contentsname}{Inhaltsverzeichnis} % rename toc
\graphicspath{{./images/}}
\hypersetup{
colorlinks=true,
linkcolor=black,
citecolor=black,
filecolor=black,
urlcolor=black,
}
\begin{document}
\input{Deckblatt.tex}
\tableofcontents
\thispagestyle{empty}
\newpage
\pagenumbering{arabic}
\section{Vorwort}
\input{sections/Vorwort.tex}
\newpage
\section{Einleitung}
\input{sections/Einleitung.tex}
\newpage
\section{Grundlegender Aufbau und Funktionsweise}
\input{sections/Grundlegender_Aufbau_und_Funkionsweise.tex}
\newpage
\section{Anwendungsgebiete}
\input{sections/Anwendungsgebiete.tex}
\newpage
\section{Anwendungsbeispiel}
\input{sections/Anwendungsbeispiel.tex}
\newpage
\section{Schlusswort}
\input{sections/Schlusswort.tex}
\newpage
\input{sections/Bibliography.tex}
\end{document}