-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
113 lines (83 loc) · 3.33 KB
/
Copy pathmain.tex
File metadata and controls
113 lines (83 loc) · 3.33 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
101
102
103
104
105
106
107
108
109
110
111
112
113
\documentclass[14pt, a4paper]{article}
\usepackage[14pt]{extsizes} % для того чтобы задать нестандартный 14-ый размер шрифта
\usepackage[utf8]{inputenc}
\usepackage{cmap}
\usepackage{pdfpages} %для вствки pdf (title)
\RequirePackage{caption}
\DeclareCaptionLabelSeparator{defffis}{ -- }
\captionsetup{justification=centering,labelsep=defffis}
\usepackage{titlesec}
\usepackage{enumitem}
\setlist{nolistsep, itemsep=0.3cm,parsep=0pt,leftmargin=1.5cm}
\titleformat*{\section}{\filcenter\bfseries\MakeUppercase}
\titleformat*{\subsection}{\bfseries\filcenter\MakeUppercase}
\titleformat*{\subsubsection}{\bfseries\filcenter\MakeUppercase}
\titleformat*{\paragraph}{\bfseries\filcenter\MakeUppercase}
\titleformat*{\subparagraph}{\bfseries\filcenter\MakeUppercase}
\makeatletter
\renewcommand{\l@section}{\@dottedtocline{1}{0em}{1.25em}}
\renewcommand{\l@subsection}{\@dottedtocline{2}{1.25em}{1.75em}}
\renewcommand{\l@subsubsection}{\@dottedtocline{3}{2.75em}{2.6em}}
\makeatother
\usepackage{graphicx}
\usepackage{natbib}
\usepackage{caption}
\usepackage[russian]{babel}
\usepackage{setspace,amsmath}
\usepackage[left=30mm, top=15mm, right=10mm, bottom=20mm, nohead, footskip=10mm]{geometry} % настройки полей документа
\usepackage{indentfirst} % отделять первую строку раздела абзацным отступом тоже
\linespread{1.5} % полуторный интервал
\usepackage{fontspec}
\setmainfont{Times New Roman}
\usepackage{multirow}
\captionsetup[table]{singlelinecheck=false,justification=raggedright}
\usepackage{algorithm}
\usepackage{algpseudocode}
% Добавляем свои блоки
\makeatletter
\algblock[ALGORITHMBLOCK]{BeginAlgorithm}{EndAlgorithm}
\algblock[BLOCK]{BeginBlock}{EndBlock}
\makeatother
% Нумерация блоков
\usepackage{caption}% http://ctan.org/pkg/caption
\captionsetup[ruled]{labelsep=period}
\renewcommand{\thealgorithm}{\arabic{algorithm}}
%----------------------------------------------------------------------------
\begin{document} % начало документа
\includepdf[pages=-]{title_me.pdf}%титульный лист
\input{abstract} % Вывод реферата
\newpage
\pagestyle{plain}
\tableofcontents % Вывод содержания
\setcounter{page}{2}
\newpage
\input{introduction} %Вывод введения
\newpage
\input{Chapter_1} %Вывод 1 главы
\newpage
\input{Chapter_2} %Вывод 2 главы
\newpage
\input{conclusion} %Вывод заключения
\newpage
\input{bibliography} %Вывод списка литературы
\newpage
\section*{Приложение 1}
\addcontentsline{toc}{section}{Приложение 1}
\input{alg_quant}
\newpage
\section*{Приложение 2}
\addcontentsline{toc}{section}{Приложение 2}
\input{tests/plus_tex_files/avr_x_1-70_tbl}
\newpage
\section*{Приложение 3}
\addcontentsline{toc}{section}{Приложение 3}
\input{tests/plus_tex_files/avr_y_1-70_tbl}
\newpage
\section*{Приложение 4}
\addcontentsline{toc}{section}{Приложение 4}
\input{tests/plus_tex_files/rlt_disp_x}
\newpage
\section*{Приложение 5}
\addcontentsline{toc}{section}{Приложение 5}
\input{tests/plus_tex_files/rlt_disp_y}
\end{document} % КОНЕЦ ДОКУМЕНТА !