-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
101 lines (78 loc) · 4.02 KB
/
main.tex
File metadata and controls
101 lines (78 loc) · 4.02 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
\documentclass[a4paper,12pt,oneside,openany,article]{memoir} %,draft twoside
\usepackage[utf8]{inputenc}
\usepackage[T2A,T1]{fontenc}
\usepackage[russian]{babel}
\usepackage{graphicx}
\graphicspath{ {media/} }
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{booktabs}
\usepackage{cmap}
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\usepackage{ntheorem}
\theoremseparator{:}
\newtheorem{hyp}{Гипотеза}
\newtheorem{state}{Утверждение}
\newtheorem{defi}{Опредеделние}
\newtheorem{que}{Исследовательский вопрос}
\usepackage{float} %% картинки на том месте где нужно
\usepackage{enumerate} % Для римских цифр в списке
\newcommand\blank[1][\textwidth]{\noindent\rule[-.2ex]{#1}{.4pt}}
%%%\geometry{a5paper, top=14mm, bottom=14mm, inner=18mm, outer=10mm, footskip=5mm, nomarginpar}%, showframe
%%%\setlength{\topskip}{0pt} %размер дополнительного верхнего поля
%%% Интервалы %%%
%% По ГОСТ Р 7.0.11-2011, пункту 5.3.6 требуется полуторный интервал
%% Реализация средствами класса (на основе setspace) ближе к типографской классике.
%% И правит сразу и в таблицах (если со звёздочкой)
%\DoubleSpacing* % Двойной интервал
\OnehalfSpacing* % Полуторный интервал
%\setSpacing{1.42} % Полуторный интервал, подобный Ворду (возможно, стоит включать вместе с предыдущей строкой)
%%% Макет страницы %%%
% Выставляем значения полей (ГОСТ 7.0.11-2011, 5.3.7)
\geometry{a4paper, top=2cm, bottom=2cm, left=2.5cm, right=1cm, nofoot, nomarginpar} %, heightrounded, showframe
\setlength{\topskip}{0pt} %размер дополнительного верхнего поля
\setlength{\footskip}{12.3pt} % снимет warning, согласно https://tex.stackexchange.com/a/334346
%%% Выравнивание и переносы %%%
%% http://tex.stackexchange.com/questions/241343/what-is-the-meaning-of-fussy-sloppy-emergencystretch-tolerance-hbadness
%% http://www.latex-community.org/forum/viewtopic.php?p=70342#p70342
\tolerance 1414
\hbadness 1414
\emergencystretch 1.5em % В случае проблем регулировать в первую очередь
\hfuzz 0.3pt
\vfuzz \hfuzz
%\raggedbottom
%\sloppy % Избавляемся от переполнений
\clubpenalty=10000 % Запрещаем разрыв страницы после первой строки абзаца
\widowpenalty=10000 % Запрещаем разрыв страницы после последней строки абзаца
\brokenpenalty=4991 % Ограничение на разрыв страницы, если строка заканчивается переносом
\input{biblatex}
\begin{document}
\input{title} % Титульный лист
\mainmatter* % Нумерация страниц не изменится, но начнётся с новой страницы
\include{0-Introduction}
\include{1-Review}
\include{2-ObjectMethod}
\include{3-Experiment}
\include{4-Conclusions}
\listoffigures
\part*{Публикации автора}
\begin{refsection}[authorpapersVAK]
\nocite{*}
\printbibliography[title={Публикации в изданиях рекомендованных ВАК.}]
\end{refsection}
\begin{refsection}[authorsvid]
\nocite{*}
\printbibliography[title={Свидетельства.}]
\end{refsection}
\begin{refsection}[authorconferences]
\nocite{*}
\printbibliography[title={Материалы конференций.}]
\end{refsection}
\begin{refsection}[authorpapers]
\nocite{*}
\printbibliography[title={Другие публикации автора.}]
\end{refsection}
\input{footer}
\end{document}