blob: 52be3b92108aa09d140e01a9c27965ce96045b71 (
plain)
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
|
\ProvidesPackage{../preamble}
\RequirePackage{amsmath}
\RequirePackage{amsthm}
\RequirePackage{amsfonts}
\RequirePackage{amssymb}
\RequirePackage{mathtools}
\RequirePackage{braket}
\RequirePackage{wrapfig}
\RequirePackage[normalem]{ulem}
\RequirePackage{longtable}
\RequirePackage{enumitem}
\RequirePackage{tikz}
\RequirePackage{cancel}
\RequirePackage{underscore}
\RequirePackage{float}
\RequirePackage{graphicx}
\graphicspath{ {./images/} }
\RequirePackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
% \setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\renewcommand{\theparagraph}{(\asbuk{paragraph})}
\DeclareRobustCommand{\divby}{%
\mathrel{\vbox{\baselineskip.65ex\lineskiplimit0pt\hbox{.}\hbox{.}\hbox{.}}}%
}
\newcommand{\bydef}{\stackrel{\text{по опр.}}{\implies}} % by definition - по определению
\newcommand{\dn}{\stackrel{\text{об.}}{=}} % denote - обозначим
\newcommand{\imaginary}{\mathrm{Im} \,}
\newcommand{\real}{\mathrm{Re} \,}
\newcommand{\prop}[1]{#1^{\text{o}}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\Z}{\mathbb{Z}}
\renewcommand{\C}{\mathbb{C}}
\newcommand{\approach}[1]{\underset{#1}{\longrightarrow}}
\newcommand{\series}[1]{\displaystyle\sum_{k=1}^\infty #1}
\newcommand{\seriesx}{\displaystyle\sum_{k=1}^\infty x_k}
\newcommand{\seriespow}{\displaystyle\sum_{k=0}^\infty a_k (x - x_0)^k}
\newcommand{\abs}[1]{\left|#1\right|}
\renewcommand{\over}[2]{\stackrel{#1}{#2}}
% --- Теорема --- %
\newtheorem{theorem}{Теорема}[subsection]
\theoremstyle{definition}
\newtheorem{definition}{Определение}[subsection]
\theoremstyle{definition}
\newtheorem*{example}{Пример}
\theoremstyle{definition}
\newtheorem*{corollary}{Следствие}
\theoremstyle{definition}
\newtheorem*{remark}{Замечание}
\theoremstyle{definition}
\newtheorem*{lemma}{Лемма}
\theoremstyle{definition}
\newtheorem*{axiom}{Аксиома}
\theoremstyle{definition}
\newtheorem{statement}{Утверждение}[subsection]
\newtheorem*{statement*}{Утверждение}
|