-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.tex
122 lines (107 loc) · 3.26 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
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
114
115
116
117
118
119
120
121
122
\documentclass[a4paper,12pt,twoside,openright]{book}
\usepackage[a4paper]{geometry}
\usepackage[T1] {fontenc }% Allow accented output charachters
\usepackage[utf8] {inputenc}% Allow accented input charachters
\usepackage {lmodern }% Modern output font
\def\magyarOptions{suggestions=no}
\usepackage[magyar]{babel} % Set document language to use
\usepackage {amsmath}%Math mode additions
\usepackage {amsfonts}
\usepackage{MnSymbol}
\usepackage{amsthm}
\usepackage {floatrow}% Append additional information to images (source)
\usepackage {mathtools}
\usepackage[pdftex]{graphicx}% Adds the ability to include images
\usepackage {xcolor }% Colors are fun :)
\usepackage {colortbl}% Named even more.
\usepackage {url }% Makes urls clickable
\usepackage {array}
\usepackage {tikz }% Latex drawn figures
\usetikzlibrary{shapes,calc,positioning,decorations, trees}
\usepackage {wrapfig}
\usepackage{fixltx2e}
\usepackage {relsize}
\usetikzlibrary {matrix }
\usepackage {textcomp}
\usepackage {scalefnt }% Scale the latex drawn figure elements
\usepackage[pdf]{pstricks}
\usepackage{subfigure}
\usepackage{enumerate}
\usepackage{titlesec}
\newcommand{\sectionbreak}{\clearpage}
% The csquotes should be used with bable to help with the references formating
\usepackage[style=english]{csquotes}
% Biblatex
\usepackage[style=ieee,
backend=biber,babel=other*, language=english, sorting=none,
backref=false]{biblatex} \DeclareSourcemap{ % Unfortunetly the
% bibtex currently knows of online type, not webpage. For now just map it.
\maps[datatype=bibtex]{
\map{
\step[typesource=webpage, typetarget=online]
}
}
}
\input{smiley.tex}
% Background highlight color used for the source code and the tables
\definecolor{bgSrc}{rgb}{0.95,0.95,0.95}
\colorlet{ColorGreyish}{black!10}
\usepackage[unicode]{hyperref}% - Add links between the doc
\usepackage[all]{hypcap} %Let the links point above figures and not below
\usepackage[numbered,
open,
openlevel=2,
atend]{bookmark}% - We want numbers
\usepackage{fancyhdr}
\setlength{\headheight}{20pt}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{ \markboth{#1}{} }
\renewcommand{\sectionmark}[1]{ \markright{#1}{} }
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[LO]{\textit{ \nouppercase{\leftmark}} }
\fancyhead[RE]{\textit{ \nouppercase{\rightmark}} }
\fancypagestyle{plain}{ %
\fancyhf{} % remove everything
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\renewcommand{\footrulewidth}{0pt}
}
\usepackage{changepage,ifthen}
\newcommand\skiptooddpage{%
\checkoddpage
\ifthenelse{\boolean{oddpage}}%
{\null\clearpage \null \clearpage}%
{\null\clearpage}%
}
\usepackage{chngcntr}
\counterwithout{section}{chapter}
\counterwithout{footnote}{chapter}
\counterwithout{figure}{chapter}
\usepackage{tocbibind}
\begin{document}
% A címlap
\input{cimlap.tex}
\tableofcontents
\chapter{Lineáris programozás}
\input{1.tex}
\input{2.tex}
\input{3.tex}
\input{4.tex}
\input{5.tex}
\input{6.tex}
\input{7.tex}
\chapter{Matroidok}
\input{8.tex}
\input{9.tex}
\input{10.tex}
\input{11.tex}
\input{12.tex}
\input{13.tex}
\input{14.tex}
\chapter{Közelitő és ütemező algoritmusok}
\input{15.tex}
\input{16.tex}
\input{17.tex}
\input{18.tex}
\input{19.tex}
\end{document}