-
Notifications
You must be signed in to change notification settings - Fork 6
/
environments.sty
33 lines (27 loc) · 1.04 KB
/
environments.sty
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
\ProvidesPackage{environments}
% Теоремы
\theoremstyle{plain}
\newtheorem{theorem}{Теорема}
\newtheorem{lemma}[theorem]{Лемма}
\newtheorem{proposition}[theorem]{Предложение}
\newtheorem{corollary}[theorem]{Следствие}
\newtheorem{claim}[theorem]{Утверждение}
\newtheorem*{claim*}{Утверждение}
\newtheorem*{theorem*}{Теорема}
\newtheorem*{lemma*}{Лемма}
% Определения
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Определение}
\newtheorem{problem}[theorem]{Задача}
\newtheorem{problems}[theorem]{Задачи}
\newtheorem*{definition*}{Определение}
\newtheorem*{problem*}{Задача}
\newtheorem*{problems*}{Задачи}
\newtheorem*{fact*}{Факт}
% Замечания и примеры
\theoremstyle{remark}
\newtheorem{example}[theorem]{Пример}
\newtheorem{examples}[theorem]{Примеры}
\newtheorem{remark}[theorem]{Замечание}
\newtheorem*{example*}{Пример}
\newtheorem*{remark*}{Замечание}