-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharbeit.tex
94 lines (60 loc) · 2.21 KB
/
arbeit.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
\documentclass[12pt]{document}
\usepackage[ngerman]{babel}% change this for your language
%thanks david
\setlength{\parindent}{0pt}
\setlength{\parskip}{4pt}
%load any additional packages
\usepackage{amssymb}
% Korrektes Kodieren des in und outputs
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} % UTF-8
\usepackage{url}
\usepackage{float}
% better tables
\usepackage{tabularx} % in the preamble
% links across the toc
\usepackage[linkcolor=black,colorlinks=true,citecolor=black,filecolor=black]{hyperref}
\usepackage[sorting=none,backend=biber,style=numeric]{biblatex}
% brauche et al. anstatt u. a.
\DefineBibliographyStrings{german}{andothers={et al\adddot}}
\addbibresource{refs.bib}
%shorthand für tiefstellen
\usepackage{subscript}
\usepackage{mathtools}
\usepackage{amsmath}
%input macros (i.e. write your own macros file called mymacros.tex
%and uncomment the next line)
%\include{mymacros}
\title{Mein Super Maturaarbeit Titel} %note \\[1ex] is a line break in the title
\author{Mein Name} %your name
\college{MNG Rämibühl} %your college
\renewcommand{\submittedtext}{4. Januar 2016}
\renewcommand{\supervisor}{Betreuende Lehrperson: David Sichau}
\degree{Maturitätsarbeit} %the degree
\degreedate{} %the degree date
\usepackage{biblatex}
\addbibresource{refs.bib}% In diesem File ist die Bibliographie gespeichert.
%end the preamble and start the document
\begin{document}
\maketitle % create a title page from the preamble info
\input{content/abstract} % include the abstract
\begin{romanpages} % start roman page numbering
\tableofcontents % generate and include a table of contents
\end{romanpages} % end roman page numbering
%now include the files of latex for each of the chapters etc
\input{content/einleitung}
\input{content/hauptteil}
\input{content/schlusswort}
\newpage
%now enable appendix numbering format and include any appendices
\appendix
\chapter{Literaturverzeichnis}
\printbibliography[heading=none] %use a bibtex bibliography file refs.bib
\newpage
\chapter{Abbildungsverzeichnis}
\makeatletter
\@starttoc{lof} % Print List of Figures
\makeatother
\newpage
\input{content/bestatigung}
\end{document}