summaryrefslogtreecommitdiff
path: root/sem5/preamble.sty
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2021-10-02 21:33:37 +0400
committerAndrew Guschin <saintruler@gmail.com>2021-10-02 21:33:37 +0400
commit4465d315c3a426356ef6586064ed875990ddfb25 (patch)
tree29ff746a39290394614935a1b6766d93c611b112 /sem5/preamble.sty
Initial commit
Diffstat (limited to 'sem5/preamble.sty')
-rw-r--r--sem5/preamble.sty74
1 files changed, 74 insertions, 0 deletions
diff --git a/sem5/preamble.sty b/sem5/preamble.sty
new file mode 100644
index 0000000..e3939ec
--- /dev/null
+++ b/sem5/preamble.sty
@@ -0,0 +1,74 @@
+\ProvidesPackage{../preamble}
+
+\RequirePackage{mathtools}
+\RequirePackage{amsfonts}
+\RequirePackage{enumitem}
+% \RequirePackage[standard]{ntheorem}
+\RequirePackage{amsthm}
+\RequirePackage{tikz}
+\RequirePackage{graphicx}
+\graphicspath{ {./images/} }
+
+\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{\bb}[1]{\mathbb{#1}}
+
+\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}}
+
+% \theoremstyle{break}
+
+% --- Теорема --- %
+% \newtheoremstyle{break}% name
+% {}% Space above, empty = `usual value'
+% {}% Space below
+% {\itshape}% Body font
+% {}% Indent amount (empty = no indent, \parindent = para indent)
+% {\bfseries}% Thm head font
+% {.}% Punctuation after thm head
+% {\newline}% Space after thm head: \newline = linebreak
+% {}% Thm head spec
+% \theorembodyfont{\normalfont}
+% \theoremstyle{break}
+\newtheorem{theorem}{Теорема}[subsection]
+% --------------- %
+
+% --- Определение --- %
+% \theorembodyfont{\normalfont}
+\theoremstyle{definition}
+\newtheorem{definition}{Определение}[subsection]
+% ------------------- %
+
+
+% --- Пример --- %
+\theoremstyle{definition}
+\newtheorem*{example}{Пример}
+% -------------- %
+
+% --- Следствие --- %
+\theoremstyle{definition}
+\newtheorem*{corollary}{Следствие}
+% ----------------- %
+
+% --- Замечание --- %
+\theoremstyle{definition}
+\newtheorem*{remark}{Замечание}
+% ----------------- %
+
+
+% --- Лемма --- %
+\theoremstyle{definition}
+\newtheorem*{lemma}{Лемма}
+% ----------------- % \ No newline at end of file