forked from alexbatashev/athena_report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
48 lines (36 loc) · 975 Bytes
/
main.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
\documentclass[12pt,a4paper]{extarticle}
\usepackage{amsthm}
\usepackage{polyglossia}
\setmainlanguage{russian}
\setotherlanguage{english}
\usepackage{setspace}
\usepackage{geometry}
\geometry{left=2.5cm}
\geometry{right=1.5cm}
\geometry{top=2cm}
\geometry{bottom=2cm}
\usepackage{hyphenat}
\usepackage{hyperref}
\input{./styles/text.tex}
\input{./styles/math.tex}
\input{./styles/source.tex}
\input{./styles/images.tex}
\input{./styles/bibliography.tex}
\begin{document}
\input{include/report_title.tex}
\setcounter{page}{2}
\tableofcontents
% добавляйте материал здесь
\input{src/intro.tex}
\input{src/overview.tex}
\input{src/modern_literature.tex}
\input{src/task.tex}
\input{src/project_structure.tex}
\input{src/graph_traverse.tex}
\input{src/graph_gradient.tex}
\input{src/graph_compiler.tex}
\input{src/framework_usage_example.tex}
\input{src/conclusion.tex}
\input{output/bibliography.tex}
\input{src/appendix.tex}
\end{document}