-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
136 lines (113 loc) · 4.05 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Parametrization
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\lang{EN} % The language: CZ = Czech, EN = English
\def\faculty{Faculty of Electrical Engineering} % Full faculty/or institute name
\def\department{Department of Computer Science} % Full name of the department
\def\worktype{Master's thesis} % Type: Bachelor's thesis, Master's thesis, ...
\def\title{Fancy title \\ of this fancy thesis} % Thesis name
\def\subtitle{} % Optional subtitle
\def\author{Your Sexy Name} % Name of the author
\def\date{May 2021} % Date
\def\supervisor{Doc. Ing. Jan Faigl, Ph.D.} % Supervisor name
\def\supervisorspecialist{Ing. Petr \v{C}\'{i}\v{z}ek} % Optional name of supervisor specialist
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document class
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[11pt,a4paper,twoside]{CTUthesis}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% User packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{lipsum} % dummy text
\usepackage{times} % times font
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{subcaption}
\usepackage{cite}
%\usepackage{hyperref}
%\usepackage[anythingbreaks]{breakurl}
\usepackage{url}
\usepackage{mathtools, nccmath}
\usepackage{array}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{pdfpages}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% MY COMMANDS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{xspace}
%\usepackage[T1]{fontenc}
\newcommand{\disable}[1]{}
\newcommand{\revise}[1]{{\color{blue}#1}}
\newcommand{\rewrite}[1]{{\color{red}#1}}
\newcommand{\todo}[1]{{\color{red}\colorbox{yellow}{\textbf{TODO:}}\color{red}#1}}
% improved colomns
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
% improved cline
%\newlength{\Oldarrayrulewidth}
%\newcommand{\Cline}[2]{%
% \noalign{\global\setlength{\Oldarrayrulewidth}{\arrayrulewidth}}%
% \noalign{\global\setlength{\arrayrulewidth}{#1}}\cline{#2}%
% \noalign{\global\setlength{\arrayrulewidth}{\Oldarrayrulewidth}}}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document head
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\TitlePage
%\setboolean{@twoside}{false}
%% thesis assignment %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\includepdf[pages=-, offset=+10 0]{task.pdf}
\begin{document_head}
%% declaration, acknowledgement, abstract %%%%%%%%%%%%%%%
\newpage
\input{src/declaration}
\newpage
\input{src/acknowledgement}
\newpage
\input{src/abstract_cz}
\newpage
\input{src/abstract_en}
\newpage
%% table of contents %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\tableofcontents
\newpage
%% list of figures %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\listoffigures
\newpage
%% list of tables %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\listoftables
\newpage
%% list of listings %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% \listoflistings
%% for printing purposes it is possible to use this line between individual inputs to achieve all-double page printing
%\newpage\null\thispagestyle{empty}\newpage\addtocounter{page}{-1}
\end{document_head}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document body
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document_body}
\input{src/introduction.tex}
\clearpage
\input{src/results.tex}
\clearpage
\input{src/conclusion.tex}
\clearpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% References
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibliography{references}
\bibliographystyle{unsrt} %use either 'unsrt', 'IEEEtran' or 'named'
\clearpage
\end{document_body}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Appendices
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\begin{document_appendices}
% \input{src/appendix_a}
%\end{document_appendices}
\end{document}