forked from HSR-Stud/RegT4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegT4.tex
113 lines (84 loc) · 2.47 KB
/
RegT4.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
106
107
108
109
110
111
112
113
% !TeX program = xelatex
% !TeX encoding = utf8
% !TeX root = RegT4.tex
% vim: ts=2 sw=2 spell:
%% TODO: publish to CTAN
\documentclass[margin=tiny]{tex/hsrzf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Packages
%% Custom packages
\usepackage{tex/hsrstud}
\usepackage{tex/docmacros}
\usepackage{tex/regtec}
%% Language configuration
\usepackage{polyglossia}
\setdefaultlanguage{english}
%% License configuration
\usepackage[
type={CC},
modifier={by-nc-sa},
version={3.0},
]{doclicense}
%% Placeholders
\usepackage{skeldoc}
%% Pretty tables
\usepackage{xltabular}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{array}
\usepackage{float}
%% Pretty drawings
\usepackage{tikz}
\usetikzlibrary{
calc, matrix, backgrounds
}
%% Landscape pages
\usepackage{pdflscape}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Metadata
\course{Electrical Engineering}
\module{RegT4}
\semester{Spring Semester 2022}
\authoremail{[email protected]}
\author{\textsl{Naoki Pross} -- \texttt{\theauthoremail}}
% did someone help you with this work?
\contributors{
Naoki Pross,
Tim Tönz,
Lukas Schmidt.
}
\title{\texttt{\themodule} -- Modern Control Engineering}
\date{\thesemester}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Document
\begin{document}
% use roman numberals for introductiory pages
\pagenumbering{roman}
\maketitle
\begin{abstract}
This document is ``open source'', you can find the \LaTeX{} sources at \url{https://github.com/NaoPross/RegT4}. All diagrams were made with TikZ. The content is based on the material of Prof. Dr. M. Kottman, from the course \emph{Regelungstechnik 4} at the University of Applied Sciences Eastern Switzerland (OST). If you find typos or errors you can open an PR on Github or mail me at \href{mailto:\theauthoremail}{\texttt{\theauthoremail}} if I'm still around (until spring 2022) or \href{mailto:[email protected]}{\texttt{[email protected]}}.
\end{abstract}
% show the names of the people who contributed to this document.
\section*{Contributors}
The following students have either directly or indirectly contributed to this work: \thecontributors
\section*{License}
\doclicenseThis
\tableofcontents
% actual content
\clearpage
\twocolumn
\setcounter{page}{1}
\pagenumbering{arabic}
\input{parts/ssmodel}
\input{parts/sscontrol}
\input{parts/discrete}
\appendix
\input{parts/linalg}
\input{parts/vanalysis}
\input{parts/laplace}
\input{parts/ztransform}
\input{parts/idiot}
\onecolumn
\input{parts/elements}
\end{document}