-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnotes.tex
More file actions
100 lines (85 loc) · 2.78 KB
/
notes.tex
File metadata and controls
100 lines (85 loc) · 2.78 KB
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
\documentclass[a4paper, 11pt]{article}
\usepackage[left=2cm,text={17cm, 24cm},top=3cm]{geometry}
\usepackage[czech]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[unicode]{hyperref}
\usepackage{url}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{pxfonts}
\usepackage[parfill]{parskip}
\usepackage{hyphenat}
\usepackage{enumitem}
\usepackage{xparse}
\usepackage[table,xcdraw]{xcolor}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[nodisplayskipstretch]{setspace} \setstretch{1.5}
\newcommand{\tikzmark}[1]{\tikz[overlay,remember picture] \node (#1) {};}
\newcommand{\DrawBox}[4][]{%
\tikz[overlay,remember picture]{%
\coordinate (TopLeft) at ($(#2)+(-0.2em,0.9em)$);
\coordinate (BottomRight) at ($(#3)+(0.2em,-0.3em)$);
%
\path (TopLeft); \pgfgetlastxy{\XCoord}{\IgnoreCoord};
\path (BottomRight); \pgfgetlastxy{\IgnoreCoord}{\YCoord};
\coordinate (LabelPoint) at ($(\XCoord,\YCoord)!0.5!(BottomRight)$);
%
\draw [red,#1] (TopLeft) rectangle (BottomRight);
\node [below, #1, fill=none, fill opacity=1] at (LabelPoint) {#4};
}
}
\newcommand\eqop[1]{\overset{#1} \sim}
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{%
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}}
\makeatother
\newtheoremstyle{break}
{\topsep}{\topsep}%
{\itshape}{}%
{\bfseries}{}%
{\newline}{}%
\theoremstyle{break}
\newtheorem*{concept}{Primitivní pojem}
\newtheorem{definition}{Definice}
\newtheorem{axiom}{Axiom}
\newtheorem{theorem}{Věta}
\newtheorem*{example}{Příklad}
\begin{document}
%-----------------------------------------------------------------------------------
\begin{titlepage}
\begin{center}
\textsc{\Huge Vysoké učení technické v~Brně}\\
\huge{\textsc{Fakulta informačních technologií}}\\
\vspace{\stretch{0.382}}
{\LARGE Lineární algebra\,--\, SLA}\\
{\Huge Poznámky z přednášek}
\vspace{\stretch{0.618}}
\end{center}
{\Large\today \hfill David Sedlák (xsedla1d@stud.fit.vutbr.cz)}
\begin{center}
Pullrequesty a připomínky můžete směřovat do repozitáře: \url{www.github.com/Dajvid/SLA-notes}
\end{center}
\end{titlepage}
%-----------------------------------------------------------------------------------
\tableofcontents
\include{lecture1}
\include{lecture2}
\include{lecture3}
\include{lecture4}
\include{lecture5}
\include{lecture6}
\include{lecture7}
\include{lecture8}
\include{lecture9}
\include{lecture12}
\newpage
\bibliographystyle{czechiso}
\bibliography{bibliography}
\def\refname{Reference}
Přednášky SLA 1 - 9, 12, přednášejicí: Kureš Miroslav, Doc. RNDr., Ph.D.
\end{document}