-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
82 lines (66 loc) · 1.84 KB
/
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
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
\documentclass[openany,11pt]{book}
% --- Packages ---
\usepackage[usenames, dvipsnames]{color} % Cool colors
\usepackage{enumerate, amsmath, amsthm, amssymb, algorithm, algpseudocode, pifont, subfig, fullpage, dashrule, tikz, bbm, booktabs, bm, verbatim, url, mathtools, wrapfig}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage[numbers]{natbib}
\usepackage{import}
\usepackage[utf8x]{inputenc}
\usepackage[russian]{babel}
\usepackage{csquotes}
\usepackage{tikz}
\usetikzlibrary{arrows,decorations.pathmorphing,positioning}
\definecolor{olivegreen}{rgb}{0,0.6,0}
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\chapter}[display]
{\normalfont\bfseries}{}{0pt}{\huge}
\usepackage[default,scale=1.0]{opensans}
\renewcommand\seriesdefault{l}
\renewcommand\mddefault{m}
\renewcommand\bfdefault{m}
% --- Misc. ---
\hbadness=10000 % No "underfull hbox" messages.
\setlength{\parindent}{0pt} % Removes all indentation.
% --- Commands ---
\input{commands}
% Nice coloring of references.
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
breaklinks=true,
urlcolor=dblue,
linkcolor=dgreen,
linkbordercolor=dgreen,
citecolor=dblue,
citebordercolor=dblue
}
% --- For bibliography ---
\usepackage{bibunits}
% --- Meta Info ---
\title{DataFest 2020 Notes}
\author{Ilnur Shugaepov \\ VK.com}
\date{September 2020}
% \doparttoc
% --- Begin Document ---
\begin{document}
\maketitle
\setcounter{tocdepth}{1}
\small{\tableofcontents}
\newpage
% -------------
% -- ML REPA --
% -------------
\chapter{ML REPA}
\subimport{chapters/}{ml_repa.tex}
% ----------------------
% -- Interpretable ML --
% ----------------------
\chapter{Interpretable ML}
\subimport{chapters/}{interpret_ml.tex}
% --------------
% -- GRAPH ML --
% --------------
\chapter{Graph ML}
\subimport{chapters/}{graph_ml.tex}
\end{document}