forked from sorokin/cpp-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
51 lines (37 loc) · 1.24 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
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc} % common
\usepackage[russian]{babel} % for russian lang
\usepackage{hyperref} % for link
\usepackage{graphicx} % for add picture
%\usepackage{daytime} % for displaying version number and date
\usepackage{datetime} % for current data
\usepackage{indentfirst} % Красная строка
\usepackage[usenames]{color} % for \textcolor
\usepackage{xcolor}
\usepackage{hyperref} % for link
\usepackage[inline]{asymptote}
\definecolor{linkcolor}{HTML}{799B03} % цвет ссылок
\definecolor{urlcolor}{HTML}{799B03} % цвет гиперссылок
\hypersetup{colorlinks=true, linkcolor=linkcolor, urlcolor=urlcolor,}
\usepackage{minted} % for highlight
\voffset=-20mm
\textheight=220mm
\hoffset=-25mm
\textwidth=180mm
\begin{document}
\begin{center}
{\Large \bf Конспекты по C++} \\
\vspace{0.5em}
{\Large \bf Руководитель: Иван Сорокин} \\
\vspace{0.5em}
{\large Собрано {\today} в {\currenttime}}
\end{center}
\underline{\hbox to 1\textwidth{{ } \hfil{ } \hfil{ } }}
\tableofcontents
\newpage
\include{compilation}
\include{preprocessor}
\include{nullptr}
\include{rvalue-references}
\include{smart-pointers}
\end{document}