-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
106 lines (79 loc) · 3.13 KB
/
main.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
\documentclass{article}
\usepackage[table]{xcolor}
\usepackage[margin=0.5in]{geometry}
\usepackage{tabularx}
\usepackage{enumitem}
\usepackage[colorlinks=true, urlcolor=blue, linkcolor=red]{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{amstext}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{commath}
\usepackage[sc,osf]{mathpazo}
\usepackage{ltablex}
\usepackage{booktabs}
\setlist{nolistsep}
\definecolor{blue}{HTML}{008ED7}
\definecolor{mygray}{gray}{0.75}
\definecolor{lightBlue}{HTML}{e5f7ff}
\renewcommand{\familydefault}{\sfdefault}
\renewcommand{\arraystretch}{1.3}
\renewcommand{\baselinestretch}{1.1}
\newcommand{\entry}[2] {
#1 &
\begin{minipage}[t]{\linewidth}%
#2
\end{minipage} \\
\arrayrulecolor{mygray}
\\\midrule
}
\newcommand{\boldentry}[1]{
\\
\hline
\rowcolor{lightBlue} \multicolumn{2}{l}{%
\textbf{\textcolor{blue}{#1}}} \\
\hline
}
\title{Control Theory Quick Reference}
\begin{document}
\maketitle
The study of many kinds of systems, control policies, matrices, and vector spaces (including functions) comprises control theory. This document is a free, community-driven growing dictionary of these terms, designed for quickly finding more information about them, rather than hunting down definitions online or in a textbook.\\
It is available in a few formats: \href{https://github.com/m516/Controls-Notes/releases/download/Current/main.pdf}{PDF}, \href{https://m516.github.io/Controls-Notes/}{HTML}, and \href{https://github.com/m516/Controls-Notes}{\LaTeX source code}.\\
Currently, this reference is not optimized for quick searches on print copies because its entries are not sorted. Viewing this document on a ctrl+f-enabled device is recommended.\\
Contributions are not just welcome, they are necessary to keep this project going strong. If you find potential for this project to help someone else, please consider generously donating 15 minutes of your time to describe one term that might confuses someone else, refine an inaccurate/incorrect definition, or fix that one design issue that bothers you. Little contributions like these will add up to make a lasting impact on control theory studies.
Here are a few ways to donate to this project:
\begin{itemize}
\item Submit an \href{https://github.com/m516/Controls-Notes/issues}{issue} that describes your proposed changes.
\item \href{https://github.com/m516/Controls-Notes/fork}{Fork this repo}, modify the code as desired, and submit a pull request.
\item Email me to gain access to the GitHub repo and/or its corresponding Overleaf project.
\end{itemize}
\begin{center}
\begin{tabularx}{\textwidth}[t]{
>{\hsize=.1\hsize\linewidth=\hsize}X
>{\hsize=1.9\hsize\linewidth=\hsize}X
}
\input{symbols}
\end{tabularx}
\end{center}
\newpage
\begin{center}
\begin{tabularx}{\textwidth}[t]{
>{\hsize=.4\hsize\linewidth=\hsize}X
>{\hsize=1.6\hsize\linewidth=\hsize}X
}
\input{theorems}
\end{tabularx}
\end{center}
\newpage
\begin{center}
\begin{tabularx}{\textwidth}[t]{
>{\hsize=.2\hsize\linewidth=\hsize}X
>{\hsize=1.8\hsize\linewidth=\hsize}X
}
\input{terms}
\end{tabularx}
\end{center}
\end{document}