This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.tex
148 lines (111 loc) · 4.45 KB
/
main.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
\documentclass{include/thesisclass}
% Main File - Based on thesisclass.cls
% Comments are mostly in English
% ------------------------------------------------------------------------------
% Further files in folder:
% - include/cmds.tex (for macros and additional commands)
% - include/kitlogo.pdf (for titlepage)
% - lit.bib (bibtex bibliography database)
% - include/titlepage.tex (for layout of titelpage)
% ------------------------------------------------------------------------------
% Useful Supplied Packages:
% amsmath, amssymb, mathtools, bbm, upgreek, nicefrac,
% siunitx, varioref, booktabs, graphicx, tikz, multicol
%% -------------------------
%% | Thesis Settings |
%% -------------------------
% english or ngerman (new german für neue deutsche Rechtschreibung statt german)
\SelectLanguage{english}
% details on this thesis
\newcommand{\thesisauthor}{Klara Fall}
\newcommand{\thesistopic}{Name des Themas auf Deutsch}
\newcommand{\thesisentopic}{Name of the Topic in English}
\newcommand{\thesislongtopic}{Very long and very detailed description of the very interesting thesis topic (only necessary for pdfsubject tag).}
\newcommand{\thesisinstitute}{Institut für Experimentelle Kernphysik}
\newcommand{\thesisreviewerone}{Prof. Dr. D. Cay}
\newcommand{\thesisreviewertwo}{Prof. Dr. E. Vil}
\newcommand{\thesisadvisorone}{} % to use: enter names and uncomment in titlepg
\newcommand{\thesisadvisortwo}{}
\newcommand{\thesistimestart}{01.04.2015} % on titlepage
\newcommand{\thesistimeend}{30.09.2015} % on titlepage
\newcommand{\thesistimehandin}{30.09.2015} % on second page 'preamble'
\newcommand{\thesispagehead}{Bachelor Thesis: \thesisentopic} % page heading
%% ---------------------
%% | PDF - Setup |
%% ---------------------
% This information will appear embed into the PDF file as meta data, but will
% not be printed anywhere
\hypersetup
{
pdfauthor={\thesisauthor},
pdftitle={Bachelorarbeit: \thesistopic},
pdfsubject={\thesislongtopic},
pdfkeywords={kit,physik,bachelor,thesis,\thesisauthor}
}
%% --------------------------------------
%% | Settings for Word Separation |
%% --------------------------------------
% Help for separation:
% In German package the following hints are additionally available:
% "- = Additional separation
% "| = Suppress ligation and possible separation (e.g. Schaf"|fell)
% "~ = Hyphenation without separation (e.g. bergauf und "~ab)
% "= = Hyphenation with separation before and after
% "" = Separation without a hyphenation (e.g. und/""oder)
% Describe separation hints here:
\hyphenation
{
über-nom-me-nen an-ge-ge-be-nen
%Pro-to-koll-in-stan-zen
%Ma-na-ge-ment Netz-werk-ele-men-ten
%Netz-werk Netz-werk-re-ser-vie-rung
%Netz-werk-adap-ter Fein-ju-stier-ung
%Da-ten-strom-spe-zi-fi-ka-tion Pa-ket-rumpf
%Kon-troll-in-stanz
}
%% -----------------------
%% | Main Document |
%% -----------------------
\usepackage{lipsum} % for Lorem Ipsum text example
\begin{document}
% Titlepage and ToC
\FrontMatter
\input{include/titlepage}
\input{include/preamble}
\begingroup \let\clearpage\relax % in order to avoid listoffigures and
\tableofcontents % listoftables on new pages
\listoffigures
\listoftables
\endgroup
\cleardoublepage
% Contents
\MainMatter
\chapter{Introduction}
\input{./chap/chapter1.tex}
\chapter{Theoretical Background}
\input{./chap/chapter2.tex}
\chapter{Experimental Investigations}
\input{./chap/chapter3.tex}
\emptychapter[3]{ROOT Routines} % usage: \emptychapter[page displayed
% in toc]{name of the chapter}
\chapter{Conclusions}
\input{./chap/chapter4.tex}
% appendix for more or less interesting calculations
\Appendix
\chapter*{\appendixname} \addcontentsline{toc}{chapter}{\appendixname}
% to make the appendix appear in ToC without number. \appendixname =
% Appendix or Anhang (depending on chosen language)
\input{./chap/appendix.tex} %\cleardoublepage
% Bibliography
\TheBibliography
% BIBTEX
% use if you want citations to appear even if they are not referenced to:
% \nocite{*} or maybe \nocite{Kon64,And59} for specific entries
%\nocite{*}
\bibliographystyle{babalpha}
\bibliography{lit.bib}
% THEBIBLIOGRAPHY
%\begin{thebibliography}{000}
% \bibitem{ident}Entry into Bibliography.
%\end{thebibliography}
\end{document}