-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbook.tex
92 lines (77 loc) · 2.25 KB
/
book.tex
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
\documentclass[a4paper,11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\usepackage{extsizes}
\usepackage{indentfirst}
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{dsfont}
\usepackage[toc,page]{appendix}
\usepackage[export]{adjustbox}
\usepackage[percent]{overpic}
\geometry{
a4paper,
left=20mm,
right=20mm,
top=20mm,
bottom=20mm,
}
\theoremstyle{plain}
\newtheorem{thm}{Теорема}[chapter]% reset theorem numbering for each chapter
\newtheorem{lmm}[thm]{Лемма}
\newtheorem{crlr}[thm]{Следствие}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Определение}
\newtheorem{exmp}[thm]{Пример}
\newtheorem{rmrk}[thm]{Замечание}
\newtheorem{asmp}[thm]{Предположение}
\newtheorem{prps}[thm]{Предложение}
\newtheorem{cond}[thm]{Условия}
\newtheorem{exc}{}[chapter]
\renewenvironment{proof}{{\scshape Доказательство:}}{}
\renewcommand{\theenumi}{\roman{enumi}}
\renewcommand{\labelenumi}{(\theenumi)}
\newcommand{\ME}{\mathbb{E}}
\newcommand{\MR}{\mathbb{R}}
\newcommand{\MP}{\mathbb{P}}
\newcommand{\MN}{\mathbb{N}}
\newcommand{\Var}{\operatorname{Var}}
\newcommand{\Cov}{\operatorname{Cov}}
\newcommand{\diag}{\operatorname{diag}}
\newcommand{\tr}{\operatorname{tr}}
\newcommand{\convdistr}{\xrightarrow{\mathcal{L}}}
\newcommand{\convprob}{\xrightarrow{\MP}}
\begin{document}
\author{Маттиас Феттер \\
(пер. Александр Самарин)}
\title{Математическая статистика}
\date{2016}
\frontmatter
\maketitle
\tableofcontents
\mainmatter
\include{./chapters/chapter01}
\include{./chapters/chapter02}
\include{./chapters/chapter03}
\include{./chapters/chapter04}
\include{./chapters/chapter05}
\include{./chapters/chapter06}
\include{./chapters/chapter07}
\include{./chapters/chapter08}
\backmatter
% bibliography, glossary and index would go here.
\addcontentsline{toc}{chapter}{Список литературы}
\bibliographystyle{stylefile}
\bibliography{biblio}
\end{document}