-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
90 lines (71 loc) · 2.15 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
% arara: xelatex: { shell: yes }
% arara: makeglossaries
% arara: biber
% arara: xelatex: { shell: yes }
% arara: xelatex: { shell: yes }
% arara: xelatex: { shell: yes }
\documentclass[thesis=B,czech]{template/FITthesisXE}
\usepackage{graphicx}
\usepackage{dirtree}
\usepackage{xevlna}
\usepackage{caption}
\usepackage{minted}
\usepackage{rotating}
\usepackage{anyfontsize}
\usepackage{listings}
\usepackage[export]{adjustbox}
\newcommand{\uv}[1]{\quotedblbase #1\textquotedblleft}
\bibliography{library.bib}
% usage: \imagefigure{filename}{description}
\newcommand{\imagefigurefull}[3]{
\begin{figure}[htbp]
\centering
\includegraphics[width=#3\linewidth]{media/#1}
\caption{#2 \label{pic:#1}}
\end{figure}
}
\newcommand{\imagefigurelarge}[2]{
\imagefigurefull{#1}{#2}{.99}
}
\newcommand{\imagefigure}[2]{
\imagefigurefull{#1}{#2}{.6}
}
\makeglossaries
\input{glossary.tex}
\glsaddall % add even unused acronyms
\department{Katedra počítačových systémů}
\title{Minimalistický CI systém}
\authorGN{Martin}
\authorFN{Franc}
\authorWithDegrees{Martin Franc}
\author{Martin Franc}
\supervisor{Ing. Jakub Jirůtka}
% \acknowledgements{Doplňte, máte-li komu a za co děkovat. V~opačném případě úplně odstraňte tento příkaz.}
\abstractEN{\input abstract_en.tex}
\abstractCS{\input abstract_cs.tex}
\placeForDeclarationOfAuthenticity{V~Praze}
\declarationOfAuthenticityOption{4}
\keywordsCS{kontinuální integrace, virtualizace, Python, testování softwaru}
\keywordsEN{continuous integration, virtualization, Python, software testing}
\assignment{assignment.pdf}
\begin{document}
\input chapters/uvod.tex
\chapter{Úvod do problematiky}
\input chapters/sw-testovani.tex
\input chapters/scm.tex
\input chapters/behove.tex
\chapter{Analýza existujících CI řešení}
\input chapters/gitlab.tex
\input chapters/travis.tex
\input chapters/buildbot.tex
\input chapters/navrh.tex
\input chapters/implementace.tex
\input chapters/testovani.tex
\input chapters/zaver.tex
\printbibliography[]
\appendix
\chapter{Seznam zkratek}
\printglossary[type=\acronymtype,style=acronyms]
\input{medium.tex}
\input{dokumentace.tex}
\end{document}