forked from mizabrik/acos-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.sty
More file actions
100 lines (73 loc) · 2.09 KB
/
mystyle.sty
File metadata and controls
100 lines (73 loc) · 2.09 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
\ProvidesPackage{mystyle}
% ---- Russian language ----
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
% ---- Chapter separation and compilation ----
\usepackage{subfiles}
% ---- Visual setings ----
\usepackage[top=1in, bottom=1in, left=1.2in, right=1.2in]{geometry}
\usepackage{xcolor}
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks, breaklinks, urlcolor=linkcolour, linkcolor=linkcolour}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LE, RO]{\large\scshape\thepage}
\fancyhead[RE]{\large\scshape{ФИВТ МФТИ}}
\fancyhead[LO]{\large\scshape{\@title}}
\fancyfoot{}
\renewcommand{\baselinestretch}{1.2}
% ---- Vector graphics ----
\usepackage{tikz}
\usetikzlibrary{calc}
% ---- Math packages ----
\usepackage{mathtools}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{euscript}
\usepackage{mathalfa}
\usepackage{esvect}
\usepackage{mymath}
% ---- Enumerate only referenced equations ----
\mathtoolsset{showonlyrefs}
% ----- amsthm environments -----
\theoremstyle{plain}
\newtheorem{theorem}{Теорема}[chapter]
\newtheorem{proposition}{Утверждение}[chapter]
\newtheorem{lemma}{Лемма}[chapter]
\newtheorem*{corollary}{Следствие}
\newtheorem*{fact}{Факт}
\theoremstyle{definition}
\newtheorem{definition}{Определение}[chapter]
\newtheorem*{example}{Пример}
\newtheorem*{exercise}{Упражнение}
\theoremstyle{remark}
\newtheorem*{remark}{Замечание}
% ----- Title page -----
\makeatletter
\renewcommand*{\maketitle}{%
\begin{titlepage}
\newlength{\drop}
\drop=0.1\textheight
\rule{\textwidth}{1pt}\par
\vspace{2pt}\vspace{-\baselineskip}
\rule{\textwidth}{0.4pt}\par
\vspace{\drop}
\centering
{\Huge \textsc{\@title}}\\[0.5\baselineskip]
\vspace{0.25\drop}
\rule{0.3\textwidth}{0.4pt}\par
\vspace{\drop}
{\Large \textsc{\@author}}\par
\vfill
{\large \textsc{ФИВТ МФТИ}}\par
{\large \textsc{\@date}}\par
\vspace*{\drop}
\rule{\textwidth}{0.4pt}\par
\vspace{2pt}\vspace{-\baselineskip}
\rule{\textwidth}{1pt}\par
\end{titlepage}
}
\makeatother