Newer
Older
\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{\thesisentopic}{Optional Untertitel}
\newcommand{\untertitel}{Very long and very detailed description of the very interesting thesis topic (only necessary for pdfsubject tag).}
\newcommand{\seminarname}{PS BK II: Jacques-Louis David}
\newcommand{\reviewer}{Prof. Dr. Ulrich Schulze}
\newcommand{\hauptfach}{Kunstgeschichte}
\newcommand{\nebenfach}{Germanistik}
\newcommand{\fachsemester}{3. Bachelor}
\newcommand{\matnr}{1922221}
\newcommand{\anschriftstr}{Erzbergerstraße 9}
\newcommand{\anschriftplz}{76133 Karlsruhe}
\newcommand{\email}{onny@project-insanity.org}
\newcommand{\tel}{0174/3938625}
\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},
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
149
150
151
152
153
154
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}