-
Notifications
You must be signed in to change notification settings - Fork 3
/
HelpSheet.tex
66 lines (56 loc) · 2.07 KB
/
HelpSheet.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
% ------------------------------------------------------------------
% Einstellen der Grundzüge des Layouts, z. B. Blattgröße
%------------------------------------------------------------------
\documentclass[a4paper,twoside=false,fontsize=6,numbers=noenddot,DIV=16]{scrreprt}
\usepackage[landscape, left=5mm, right=5mm, top=5mm, bottom=5mm]{geometry}
\pagestyle{empty}
%------------------------------------------------------------------
% Importieren den notwendigen packages
%------------------------------------------------------------------
\include{tex/packages}
%------------------------------------------------------------------
% Weitere Einstellungen (Farben / Numerierungstiefen)
%------------------------------------------------------------------
\include{tex/settings}
% New definitions
\newcommand{\argmin}{\arg\!\min}
\newcommand{\argmax}{\arg\!\max}
\newcommand{\diff}{\mathrm{d}}
\newcommand{\cov}{\mathrm{cov}}
\newcommand{\var}{\mathrm{var}}
\newcommand{\matrixroot}[1]{#1^{\frac{1}{2}}}
\newcommand{\ti}[2]{#1_\mathrm{#2}}
\newcommand{\inv}{^{-1}}
\newcommand{\trans}{^\top}
\newcommand{\norm}[1]{\lVert#1\rVert}
%------------------------------------------------------------------
% Dokumentbeginn
%------------------------------------------------------------------
\begin{document}
\setlength{\columnsep}{0.4cm}
\setlength{\columnseprule}{0pt}
\begin{multicols*}{3}
\input{pages/Basics}
\input{pages/KKT}
\input{pages/Newton-type}
\input{pages/Optimization-strategies}
\input{pages/nmpc}
\input{pages/Dynamic-programming}
\input{pages/Indirect-approach}
% \input{pages/discrete_optimization} % Most of that stuff is covered in other parts
\input{pages/direct-approach}
\input{pages/calculating_derivatives}
\input{pages/parametric_nonlinear_optimization}
\input{pages/integration}
\input{pages/sequential_simultaneous}
\input{pages/predictor-corrector-realtime.tex}
\end{multicols*}
% TODO: Discretization methods (e.g. RK4)
% TODO: Collocation
\end{document}
%%% Local Variables:
%%% coding: utf-8
%%% mode: latex
%%% TeX-engine: xetex
%%% TeX-master: t
%%% End: