-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaster.tex
105 lines (84 loc) · 2.34 KB
/
master.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
\RequirePackage[l2tabu, orthodox]{nag}%check for errors, obsoletion and warn helpfull
%-------------------
%Beginn des Kopfbereiches
%-------------------
\documentclass[a4paper,12pt,twoside]{scrreprt}
%We speak german and english
\usepackage[utf8]{inputenc}
\usepackage[ngerman,english]{babel}
%Own style definitions:
\setkomafont{title}{\scshape}
\addtokomafont{disposition}{\itshape}
\setlength{\parindent}{2.4ex}
\setlength{\parskip}{0.7em}
%use garamond Font
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage[urw-garamond]{mathdesign}
\usepackage{garamondx}
\renewcommand{\rmdefault}{ugm}
\clubpenalty10000
\widowpenalty10000
%\usepackage{microtype}%for tuned kerning
\usepackage{layouts}
%Math stuff
\usepackage{amsmath}
%\usepackage{pgfplots}
%Handy packages & Co
\usepackage{color}
\usepackage{blindtext}
\usepackage{setspace}
\usepackage{csquotes}
\usepackage{multicol}
\usepackage{units}
\usepackage{siunitx}
\DeclareSIUnit\years{yrs}
\usepackage{physics}
\usepackage[x11names]{xcolor}
%customize toc
\setcounter{tocdepth}{1}
\setcounter{secnumdepth}{2}
\numberwithin{equation}{chapter}
\usepackage[
backend=biber,
style=numeric,
natbib=true,
url=false,
doi=true,
eprint=false
]{biblatex}
\usepackage[hidelinks,pdfusetitle]{hyperref}
\addbibresource{refs.bib}
%Own Commands
%Plot-texts
\newcommand{\DescrHeightLevels}{ For the vertical profile model levels have been used. For each level the mean height is used. Full model levels are taken to be in the geometric mean height between half levels. }
%\newcommand{\data}{./data}
\newcommand{\Ri}{R\!i}
\newcommand{\p}{\par}
\newcommand{\ftimes}{\cdot}
\newcommand{\ddiff}[2]{\ensuremath{\frac{d\! #1}{d\! #2}}}
\newcommand{\pdiff}[2]{\ensuremath{\frac{\partial\! #1}{\partial\! #2}}}
\newcommand{\euler}[1]{\ensuremath{\pdiff{#1}{t}+\left(\vec{v}\times\vec{\nabla}\right)#1}}
%Begin pgfplot stuff
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\pgfplotstableset{col sep=semicolon}
\usepgfplotslibrary{units}
\def\axisdefaultheight{120pt}
\def\axisdefaultwidth{240pt}
\newcommand{\colA}{green}
\newcommand{\colB}{brown}
\newcommand{\colC}{blue}
\newcommand{\colD}{black}
\newcommand{\colE}{orange}
\pgfplotscreateplotcyclelist{fcolor}{%
Green4,mark=none\\%
Chocolate4\\%
RoyalBlue3\\%
black\\%
OrangeRed1\\%
}
\begin{document}
\pagenumbering{roman}
\input{mainfile}
\end{document}