initial project commit

This commit is contained in:
Johannes Demel
2015-10-19 11:52:10 +02:00
commit 01ba809115
34 changed files with 4725 additions and 0 deletions

58
thesis-master.tex Normal file
View File

@@ -0,0 +1,58 @@
% Document class provides standardized title page + needed extras.
\documentclass{templates/cel-thesis}
\thesisTitle{This is the TITLE}
\thesisType{This is a Type (masterthesis?)}
\thesisAuthor{Foo B. Ar}
\thesisAdvisor{Univ.-Prof. Dr.rer.nat. Friedrich K. Jondral}
\thesisSupervisor{Dipl.-Ing. Super-Assi Deluxe}
\thesisStartDate{35.13.1687}
\thesisEndDate{30.2.2025}
\thesisSignatureDate{31.2.2025}
\thesisLanguage{ngerman}
%%% LANGUAGE SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% additional Hyphenation rules
\hyphenation{Fre-quenz-ebe-ne Fre-quenz-ei-gen-schaf-ten
Rausch-leis-tungs-dich-te viel-ver-sprechender non-para-metric
repro-gra-mmable}
% Settings for bibliography
\usepackage{babelbib}
\bibliographystyle{alpha}
%%% PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Add all the packages you feel like you need them.
% You'll need it.
\usepackage{amsmath,amssymb}
% Figures with subfigures.
\usepackage{subfigure}
% automatically expand/abbreviate terms.
\usepackage[printonlyused]{acronym}
\begin{document}
\pagenumbering{roman} % all the preliminaries should be counted roman style
\maketitle
%% preliminaries
\include{abstract} % a MUST, few pages abstract
\tableofcontents % a MUST
% \listoffigures % if you want
% \listoftables % if you want
\include{abbreviations} % needed if you use \acronym package. Might go to appendix
%% main document
\pagenumbering{arabic} % now old school arabic enumerated pages.
\include{intro} % include chapter intro.tex
\include{hinweise} % an example
% % \include{chapter02} % that's how you include chapter02.tex
%% Appendix
\appendix
\bibliography{bibliography} % include bibliography.bib and with formating etc.
\end{document}