diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-10-25 12:59:54 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-10-25 12:59:54 +0400 |
| commit | 730ab0a48a2b0fb75ba4cc091c50a4f02832287d (patch) | |
| tree | 93fa21a64ce124971542f213bc54b749e732e0a9 /preamble.sty | |
| parent | 6fb57f9880eb5b8575a45f80398904f5041d4b70 (diff) | |
Обновлены Lecture.cls и preamble.sty
Diffstat (limited to 'preamble.sty')
| -rw-r--r-- | preamble.sty | 43 |
1 files changed, 11 insertions, 32 deletions
diff --git a/preamble.sty b/preamble.sty index 22c24ce..00516c1 100644 --- a/preamble.sty +++ b/preamble.sty @@ -1,12 +1,20 @@ \ProvidesPackage{../preamble} \RequirePackage{amsmath} -\RequirePackage{mathtools} +\RequirePackage{amsthm} \RequirePackage{amsfonts} +\RequirePackage{amssymb} +\RequirePackage{mathtools} + +\RequirePackage{wrapfig} +\RequirePackage[normalem]{ulem} +\RequirePackage{longtable} \RequirePackage{enumitem} -% \RequirePackage[standard]{ntheorem} -\RequirePackage{amsthm} \RequirePackage{tikz} +\RequirePackage{cancel} +\RequirePackage{underscore} +\RequirePackage{float} + \RequirePackage{graphicx} \graphicspath{ {./images/} } @@ -20,7 +28,6 @@ \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} @@ -29,51 +36,23 @@ \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}{Лемма} -% ----------------- % -% --- Лемма --- % \theoremstyle{definition} \newtheorem*{axiom}{Аксиома} -% ----------------- % |