-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
68 lines (52 loc) · 1.4 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
\documentclass[a4paper, 11pt]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[slovak]{babel}
\usepackage{color}
\usepackage{amsthm}
\usepackage{tocloft}
\usepackage{comment}
\usepackage{moreverb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{faktor}
\usepackage{geometry}
\geometry{
a4paper,
total={150mm, 257mm},
left=30mm,
top=20mm,
}
%powerset
\usepackage[mathscr]{euscript}
\let\euscr\mathscr \let\mathscr\relax% just so we can load this and rsfs
\usepackage[scr]{rsfso}
%\newcommand{\powerset}{\raisebox{.15\baselineskip}{\Large\ensuremath{\wp}}}
\def\powerset{\mathcal{P}}
\title{Kombinatorické štruktúry :: sylabus}
\author{Askar Gafurov}
% znacenia viet, definicii atd
\newtheorem{theorem}{Veta}[section]
\newtheorem{theorem_hard}[theorem]{Veta*}
\newtheorem{corollary}{Dôsledok}[theorem]
\newtheorem{lemma}[theorem]{Lema}
\newtheorem{hypothesis}{Hypotéza}[section]
\theoremstyle{remark}
\newtheorem{remark}{Poznámka}[section]
\theoremstyle{definition}
\newtheorem{definition}{Definícia}[section]
\newtheorem*{construction}{Konštrukcia}
% moje makra
\def\TODO{\textbf{\textcolor{red}{TODO }}}
\def\set#1{\left\{#1\right\}}
\def\ssize#1{\left|#1\right|}
\begin{document}
\maketitle
\tableofcontents
\input introduction.tex
\input latin_squares.tex
\input block_designs.tex
\input matroids.tex
\end{document}