-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
104 lines (80 loc) · 2.75 KB
/
thesis.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
% Document: Bachelor Thesis: Minimal Problem Solver Generator
% Author: Pavel Trutman
\documentclass[bsc]{cmpthesis}
\usepackage[czech,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{indentfirst}
\usepackage{enumitem}
\usepackage{textcomp}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{forloop}
\usepackage{subcaption}
\usepackage{pdflscape}
\usepackage{multirow}
\usepackage{dirtree}
% for better verbatim environment
\usepackage{fancyvrb}
% to inlucude pdf pages
\usepackage{pdfpages}
% list of symbols and abbreviations
\usepackage[acronym,nonumberlist,style=long,sort=def]{glossaries}
\setlength{\glsdescwidth}{0.6\linewidth}
\setlength{\glspagelistwidth}{0.4\linewidth}
\renewcommand*{\glsgroupskip}{}
\newcommand{\Acronym}[2]{\newacronym{#1}{#1}{#2}}
\input{acronyms}
\makeglossaries
% algorithmic macros and settings
\newcounter{counter}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\algdef{S}[IF]{IfML}[1]{\algorithmicif\ #1}
\newcommand{\StatexIndent}[1][1]{
\Statex\forloop{counter}{0}{\value{counter} < #1}{\hskip\algorithmicindent\hskip-0.25em}
}
\startThesisInfo
\title{Minimal Problem Solver Generator}
\author{Pavel Trutman}
\CMPAdvisor{Ing. Tom\'a\v s Pajdla, PhD.}
\CMPReportNo{}
\CMPAcknowledgement{\centering This work has been supported by FP7-SPACE-2012-312377 PRoViDE and ATOM TA02011275 grants.}
\CMPEmail{[email protected]}
\CMPDocumentURL{http://cmp.felk.cvut.cz/~trutmpav/bachelor-thesis/thesis/thesis.pdf}
\stopThesisInfo
% ============================== your definitions (abbreviations etc.)
\DeclareMathOperator{\lcm}{lcm}
\DeclareMathOperator{\LM}{LM}
\setitemize{noitemsep,topsep=0.2cm,parsep=0.2cm,partopsep=0pt,leftmargin=1cm}
\setenumerate{noitemsep,topsep=0.2cm,parsep=0.2cm,partopsep=0pt,leftmargin=1cm}
% =========================================================== settings
\graphicspath{{images/}}
% ========================================================== text body
\begin{document}
\cleardoublepage\def\thepage{\roman{page}}\setcounter{page}{3}
% thesis assignment as required by FEE, CTU
\includepdf[pages={1}]{pdfs/assignment-ENG.pdf}
\includepdf[pages={1}]{pdfs/assignment-CZE.pdf}
\input{acknowledgement}
\clearpage
\input{declaration}
\clearpage
\input{abstract}
\clearpage
\cleardoublepage\def\thepage{\arabic{page}}\setcounter{page}{1}
\tableofcontents\pagestyle{headings}
\listofalgorithms
\glsaddall
\printglossary[type=acronym,title=List of Symbols and Abbreviations]
\input{introduction.tex}
\input{polynomial-system-solving.tex}
\input{automatic-generator.tex}
\input{experiments.tex}
\input{conclusion.tex}
\appendix
\input{CD.tex}
\bibliographystyle{plain}
\bibliography{citations}{}
\end{document}