From 6a3f42d22d98ab487b839ccdc36929670538261f Mon Sep 17 00:00:00 2001
From: Ondrej Guth <ondrej.guth@fit.cvut.cz>
Date: Mon, 9 Aug 2021 14:32:12 +0200
Subject: [PATCH] separated files that belong to the template from the files
 with contents

---
 .gitignore                        |   2 +
 ctufit-thesis.tex                 |   6 +-
 appendix.tex => text/appendix.tex |   0
 medium.tex => text/medium.tex     |   0
 text.tex => text/text.tex         |   0
 thesis.tex                        | 533 ------------------------------
 6 files changed, 5 insertions(+), 536 deletions(-)
 rename appendix.tex => text/appendix.tex (100%)
 rename medium.tex => text/medium.tex (100%)
 rename text.tex => text/text.tex (100%)
 delete mode 100644 thesis.tex

diff --git a/.gitignore b/.gitignore
index 17559f9..87a9e70 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
 *.aux
 *.bbl
 *.blg
+*.dvi
 *.fdb_latexmk
 *.fls
 *.lof
@@ -9,5 +10,6 @@
 *.lot
 *.out
 *.pdf
+*.ps
 *.run.xml
 *.toc
diff --git a/ctufit-thesis.tex b/ctufit-thesis.tex
index d8ddbbb..f0f799f 100644
--- a/ctufit-thesis.tex
+++ b/ctufit-thesis.tex
@@ -204,17 +204,17 @@ W3C & World Wide Web Consortium
 % THE THESIS
 % MODIFY ANYTHING BELOW THIS LINE
 %%%%%%%%%%%%%%%%%%%
-\include{text}
+\include{text/text}
 
 \appendix
 \appendixinit
 
-\include{appendix}
+\include{text/appendix}
 
 \backmatter
 
 \bibliography{bib-database}
 
-\include{medium}
+\include{text/medium}
 
 \end{document}
diff --git a/appendix.tex b/text/appendix.tex
similarity index 100%
rename from appendix.tex
rename to text/appendix.tex
diff --git a/medium.tex b/text/medium.tex
similarity index 100%
rename from medium.tex
rename to text/medium.tex
diff --git a/text.tex b/text/text.tex
similarity index 100%
rename from text.tex
rename to text/text.tex
diff --git a/thesis.tex b/thesis.tex
deleted file mode 100644
index 309810e..0000000
--- a/thesis.tex
+++ /dev/null
@@ -1,533 +0,0 @@
-% Template for theses recommended at Czech Technical University, Faculty of Information Technology
-% inspired by lipics-v2019 documentclass
-% Questions and help: <ondrej.guth@fit.cvut.cz>
-% 2021: work in progress
-
-\documentclass[a4paper,czech,unicode,twoside]{book}[2019/12/20]
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% FILL IN THIS INFORMATION
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\newcommand{\thesistitle}{Název příkladné závěrečné práce}
-\newcommand{\thesistype}{Bakalářská práce}
-\newcommand{\thesisauthor}{Jiří Nebozíz}
-\newcommand{\supervisor}{doc.\,Ing.\,Damien Zlo,\,Ph.D.}
-\newcommand{\department}{Katedra teoretické informatiky}
-\newcommand{\yearofdefence}{2021}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% END FILL IN
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% TEMPLATE SETTINGS
-% no need to modify anything within this section
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\title{\thesistitle}
-\author{\thesisauthor}
-\RequirePackage{babel}[2020/07/13] %localization
-\RequirePackage{iftex}[2020/03/06]
-\iftutex
-    \RequirePackage{ellipsis}[2020/05/22] %ellipsis workaround for XeLaTeX
-\else
-    \RequirePackage[utf8]{inputenc}[2018/08/11] %this file encoding
-    \RequirePackage{lmodern}[2009/10/30]
-\fi
-\RequirePackage[bottom=4cm,footskip=4em]{geometry}[2020/01/02] %page layout
-\RequirePackage{setspace}[2011/12/19] %line spacing in title page
-\RequirePackage{listings}[2020/03/24]
-\RequirePackage{xcolor}[2016/05/11]
-\RequirePackage{multicol}[2019/12/09]
-\RequirePackage{titlesec}[2019/10/16]
-\RequirePackage{mathtools}[2020/03/24]
-\RequirePackage{amssymb}[2013/01/14]
-\RequirePackage[pdfpagelayout=TwoPageRight]{hyperref}[2020-05-15] % optional package
-\RequirePackage{pdfpages}[2020/01/28]
-\RequirePackage{fancyhdr}[2019/01/31]
-\RequirePackage[labelsep=space,singlelinecheck=false,font={up,small},labelfont={sf,bf}]{caption}[2020/05/30]
-\RequirePackage{amsthm}[2020/05/29]
-\RequirePackage{emptypage}[2010/05/30]
-
-%%% modra
- \definecolor{decoration}{RGB}{0, 122, 195} %CTU blue
- \definecolor{heading}{RGB}{0, 122, 195}
- \definecolor{headbackgroundgray}{RGB}{199, 219, 241} %light blue
- \definecolor{backgroundgray}{RGB}{199, 219, 241} %CTU light blue
- \definecolor{headgray}{rgb}{0.50,0.50,0.51}
- \definecolor{enumgray}{RGB}{0, 122, 195} %CTU blue
-
-\bibliographystyle{plainurl}% the mandatory bibstyle
-
-\setcounter{secnumdepth}{4}% numbering sections; 4: subsubsection
-
-% code listing settings
-\renewcommand\lstlistingname{Výpis kódu}
-\renewcommand\lstlistlistingname{Seznam výpisů kódu}
-\lstset{basicstyle=\small\ttfamily,keywordstyle=\bfseries,%
-        backgroundcolor=\color{backgroundgray},%
-        frame=single,framerule=0pt,xleftmargin=\fboxsep,xrightmargin=\fboxsep}
-% code listing setting end
-
-% captions settings
-\makeatletter
-\@ifpackagelater{hyperref}{2009/12/09}
-  {\captionsetup{compatibility=false}}%cf. http://groups.google.de/group/comp.text.tex/browse_thread/thread/db9310eb540fbbd8/42e30f3b7b3aa17a?lnk=raot
-  {}
-\makeatother
-\DeclareCaptionLabelFormat{boxed}{%0.61,0.61,0.61
-  \kern0.05em{\color{decoration}\rule{0.73em}{0.73em}}%
-  \hspace*{0.67em}\bothIfFirst{#1}{~}#2}
-\captionsetup{labelformat=boxed}
-\captionsetup[table]{position=top}
-% captions settings end
-
-% lists settings
-\setlength\leftmargini  \parindent
-\setlength\leftmarginii {1.2em}
-\setlength\leftmarginiii{1.2em}
-\setlength\leftmarginiv {1.2em}
-\setlength\leftmarginv  {1.2em}
-\setlength\leftmarginvi {1.2em}
-\renewcommand\labelenumi{%
-  \textcolor{enumgray}{\headfont\bfseries\upshape\mathversion{bold}\theenumi.}}
-\renewcommand\labelenumii{%
-  \textcolor{enumgray}{\headfont\bfseries\upshape\mathversion{bold}\theenumii.}}
-\renewcommand\labelenumiii{%
-  \textcolor{enumgray}{\headfont\bfseries\upshape\mathversion{bold}\theenumiii.}}
-\renewcommand\labelenumiv{%
-  \textcolor{enumgray}{\headfont\bfseries\upshape\mathversion{bold}\theenumiv.}}
-\makeatletter
-\renewcommand\labelitemi{%
-  \textcolor{enumgray}{\ifnum\@listdepth=\@ne
-                                  \rule{0.67em}{0.33em}%
-                                \else
-                                  \rule{0.45em}{0.225em}%
-                                \fi}}
-\makeatother
-\renewcommand\labelitemii{%
-  \textcolor{enumgray}{\rule{0.45em}{0.225em}}}
-\renewcommand\labelitemiii{%
-  \textcolor{enumgray}{\headfont\bfseries\textasteriskcentered}}
-\renewcommand\labelitemiv{%
-  \textcolor{enumgray}{\headfont\bfseries\textperiodcentered}}
-\renewcommand*\descriptionlabel[1]{%
-  \hspace\labelsep\textcolor{enumgray}{\headfont\bfseries\mathversion{bold}#1}}
-% lists settings end
-
-\def\headfont{\rmfamily} %font for headings (chapter, section, etc.)
-
-% frontmatter headings
-\def\frontchapterfont{\Large \bfseries}
-\def\frontsectionfont{\large\bfseries}
-\def\frontsubsectionfont{\large}
-\def\frontsubsubsectionfont{\bfseries}
-% frontmatter headings end
-
-% frontmatter pseudochapters: named part without printing actual chapter heading
-\makeatletter
-\newcommand{\frontchapternotprinted}[1]{%
-  \begingroup
-  \let\@makechapterhead\@gobble % make \@makechapterhead do nothing
-  \let\cleardoublepage\clearpage
-  \chapter{#1}
-  \endgroup
-}
-\makeatother
-% frontmatter pseudochapters end
-
-% theorems, proofs, definitions, etc. end
-\makeatletter
-\thm@headfont{%
-  \textcolor{decoration}{$\blacktriangleright$}\nobreakspace\headfont\bfseries}
-\def\th@remark{%
-  \thm@headfont{%
-    \textcolor{decoration}{$\blacktriangleright$}\nobreakspace\headfont}%
-  \normalfont % body font
-  \thm@preskip\topsep \divide\thm@preskip\tw@
-  \thm@postskip\thm@preskip
-}
-\def\@endtheorem{\endtrivlist}%\@endpefalse
-\renewcommand\qedsymbol{\textcolor{decoration}{\ensuremath{\blacktriangleleft}}}
-\renewenvironment{proof}[1][\proofname]{\par
-  \pushQED{\qed}%
-  \normalfont \topsep6\p@\@plus6\p@\relax
-  \trivlist
-  \item[\hskip\labelsep
-        \color{black}\headfont\bfseries
-    #1\@addpunct{.}]\ignorespaces
-}{%
-  \popQED\endtrivlist%\@endpefalse
-}
-\makeatother
-\theoremstyle{plain}
-\newtheorem{theorem}{Věta}
-\newtheorem{lemma}[theorem]{Pomocné tvrzení}
-\newtheorem{corollary}[theorem]{DĹŻsledek}
-\newtheorem{proposition}[theorem]{Návrh}
-\newtheorem{definition}[theorem]{Definice}
-\theoremstyle{definition}
-\newtheorem{example}[theorem]{Příklad}
-\theoremstyle{remark}
-\newtheorem{note}[theorem]{Poznámka}
-\newtheorem*{note*}{Poznámka}
-\newtheorem{remark}[theorem]{Pozorování}
-\newtheorem*{remark*}{Pozorování}
-\numberwithin{theorem}{chapter}
-% theorems, proofs, definitions, etc. end
-
-% table of contents colored chapters
-\makeatletter
-\let\stdl@chapter\l@chapter
-\renewcommand*{\l@chapter}[2]{%
-  \stdl@chapter{\textcolor{heading}{#1}}{\textcolor{heading}{#2}}}
-\makeatother
-% table of contents colored chapters end
-
-% headers and footers
-\makeatletter
-\def\ps@plain{%chapter beginning
-    \let\@evenhead\@empty%
-    \let\@oddhead\@empty%
-    \def\@evenfoot{\bfseries\color{headgray}\hfill\thepage\hfill}%
-    \def\@oddfoot{\bfseries\color{headgray}\hfill\thepage\hfill}}
-\makeatother
-\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
-\renewcommand{\sectionmark}[1]{\markright{#1}}
-\pagestyle{fancy}
-\fancyhf{}
-\fancyhead[LE]{\leavevmode\smash{\llap{\color{headgray} \bfseries \thepage \hspace*{4em}}}}
-\fancyhead[RE]{\color{headgray}\bfseries\nouppercase{\leftmark}}
-\fancyhead[RO]{\leavevmode\smash{\rlap{\hspace*{4em}\color{headgray}\bfseries\thepage}}}
-\fancyhead[LO]{\color{headgray}\bfseries\nouppercase{\rightmark}}
-\renewcommand{\headrulewidth}{0pt}
-% headers and footers end
-
-% title page
-\renewcommand{\maketitle}{\begin{titlepage}%
-\newgeometry{left=67mm,top=80mm,right=40mm}%\thispagestyle{empty}%
-\noindent{\large\headfont\noindent\thesistype}
-\vskip 3mm
-\noindent{\noindent\huge\headfont\bfseries\color{black}\begin{flushleft}\begin{onehalfspace}\MakeUppercase{\thesistitle}\end{onehalfspace}\end{flushleft}}
-\vskip 35mm
-\noindent{\large \headfont \bfseries \thesisauthor}
-
-\vfill
-
-\noindent{\headfont Fakulta informaÄŤnĂ­ch technologiĂ­ ÄŚVUT v Praze\\
-\department\\
-VedoucĂ­: \supervisor\\
-\today}\end{titlepage}
-\restoregeometry
-}
-%title page end
-
-\newenvironment{abstrakt}{%
-  \vspace*{18mm}
-  \noindent
-  {{\frontchapterfont\begin{flushleft}{\color{heading}Abstrakt}\end{flushleft}}}%
-  \bigskip
-  \noindent\ignorespaces}
-
-\newenvironment{abstract}{%
-  \vskip\bigskipamount
-  \noindent
-  {{\frontchapterfont\begin{flushleft}{\color{heading}Abstract}\end{flushleft}}}%
-  \bigskip
-  \noindent\ignorespaces}
-  
-\newenvironment{prohlaseni}{
-  {{\frontchapterfont\begin{flushright}{\color{heading}Prohlášení}\end{flushright}}}%
-  \bigskip
-  \noindent\ignorespaces}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% TEMPLATE SETTINGS END
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-%%%%%%%%%%%%%%%%%%%%%%
-% DEMO CONTENTS SETTINGS
-% You may choose to modify this part.
-%%%%%%%%%%%%%%%%%%%%%%
-\usepackage{dirtree}
-\usepackage{lipsum,tikz}
-%%%%%%%%%%%%%%%%%%%%%%
-% DEMO CONTENTS SETTINGS END
-%%%%%%%%%%%%%%%%%%%%%%
-
-\begin{document}
-\frontmatter
-%%%%%%%%%%%%%%
-% FRONTMATTER SETTINGS
-% no need to modify this part
-%%%%%%%%%%%%%%
-\titleformat
-{\chapter} % command
-% [display] % shape
-{} % format
-{} % label
-{} % sep
-{\color{heading}\frontchapterfont \raggedleft} % before-code
-[\vskip -2em] % after-code
-
-\titleformat
-{\section}
-{\frontsectionfont\color{heading}}
-{}
-{}
-{}
-  
-% \titleformat{\subsection}
-%   {\frontsubsectionfont\color{heading}}{{{\color{black}\thesubsection}}}{1em}{}[\vskip -1em]
-  
-% \titleformat{\subsubsection}
-%   {\frontsubsubsectionfont\color{heading}}{{{\color{black}\thesubsubsection}}}{1em}{}[\vskip -1em]
-
-\makeatletter
-\@openrightfalse
-\makeatother
-%%%%%%%%%%%%%%
-% FRONTMATTER SETTINGS END
-%%%%%%%%%%%%%%
-
-
-\includepdf{assignment-include.pdf}
-
-\thispagestyle{empty}
-\cleardoublepage
-
-\maketitle
-% \clearpage
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% PREPRINT
-% no need to modify
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-	\clearpage
-	\thispagestyle{empty}
-	
-
-		~
-	\vfill
-	
-	{\small
-			\noindent České vysoké učení technické v Praze \\
-		\noindent Fakulta informaÄŤnĂ­ch technologiĂ­ \\
-	\noindent \textcopyright{} \yearofdefence{} \thesisauthor. Všechna práva vyhrazena.\\
-		\noindent \textit{Tato práce vznikla jako školní dílo na Českém vysokém učení technickém v Praze, Fakultě informačních technologií. Práce je chráněna právními předpisy a mezinárodními úmluvami o právu autorském a právech souvisejících s právem autorským. K jejímu užití, s výjimkou bez uplatněných zákonných licencí nad rámec oprávnění uvedených v Prohlášení, je nezbytný souhlas autora.}
-	
-	\vspace{1em}
-	
-	\noindent Odkaz na tuto práci: \thesisauthor. \textit{\thesistitle}. \thesistype. České vysoké učení technické v Praze, Fakulta informačních technologií, \yearofdefence.
-}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% PREPRINT END
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-\tableofcontents
-\listoffigures
-\begingroup
-\let\clearpage\relax
-\listoftables
-\lstlistoflistings
-\endgroup
-
-%%%%%%%%%%%%%%%%%%%
-% ACKNOWLEDGMENT
-% FILL IN / MODIFY
-%%%%%%%%%%%%%%%%%%%
-\frontchapternotprinted{Poděkování}
-~
-\vfill
-\hskip 0cm \begin{minipage}{0.7\textwidth}
-\textit{Chtěl bych poděkovat především sit amet, consectetuer adipiscing elit. Curabitur sagittis hendrerit ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Cras pede libero, dapibus nec, pretium sit amet, tempor quis. Sed vel lectus. Donec odio tempus molestie, porttitor ut, iaculis quis, sem. Suspendisse sagittis ultrices augue.}
-\end{minipage}
-
-\vfill
-
-\vfill
-%%%%%%%%%%%%%%%%%%%
-% ACKNOWLEDGMENT END
-%%%%%%%%%%%%%%%%%%%
-
-
-
-%%%%%%%%%%%%%%%%%%%
-% ACKNOWLEDGMENT
-% FILL IN / MODIFY
-%%%%%%%%%%%%%%%%%%%
-\frontchapternotprinted{Prohlášení}
-~
-\vfill
-% INSTRUCTIONS
-% ENG: choose one of approved texts of the declaration. DO NOT CREATE YOUR OWN. Find the approved texts at https://courses.fit.cvut.cz/SFE/download/index.html#_documents (document Declaration for FT in English)
-% CZE/SLO: Vyberte jedno z fakultou schvalenych prohlaseni. NEVKLADEJTE VLASTNI TEXT. Schvalena prohlaseni najdete zde: https://courses.fit.cvut.cz/SZZ/dokumenty/index.html#_dokumenty (prohlášení do ZP)
-\begin{prohlaseni}
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur sagittis hendrerit ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Cras pede libero, dapibus nec, pretium sit amet, tempor quis. Sed vel lectus. Donec odio tempus molestie, porttitor ut, iaculis quis, sem. Suspendisse sagittis ultrices augue. Donec ipsum massa, ullamcorper in, auctor et, scelerisque sed, est. In sem justo, commodo ut, suscipit at, pharetra vitae, orci. Pellentesque pretium lectus id turpis.
-
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur sagittis hendrerit ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Cras pede libero, dapibus nec, pretium sit amet, tempor quis. Sed vel lectus. Donec odio tempus molestie, porttitor ut, iaculis quis, sem. Suspendisse sagittis ultrices augue. Donec ipsum massa, ullamcorper in, auctor et, scelerisque sed, est. In sem justo, commodo ut, suscipit at, pharetra vitae, orci. Pellentesque pretium lectus id turpis.
-\vskip 1cm
-\noindent
-V Praze dne 10.\;května 2020 \hspace{.3\textwidth} \dotfill
-\end{prohlaseni}
-%%%%%%%%%%%%%%%%%%%
-% DECLARATION END
-%%%%%%%%%%%%%%%%%%%
-
-
-
-%%%%%%%%%%%%%%%%%%%
-% ABSTRACT
-% FILL IN / MODIFY
-%%%%%%%%%%%%%%%%%%%
-\frontchapternotprinted{Abstrakt}
-\begin{abstrakt}% Enter abstract in CZECH.
-\lipsum[1]
-\end{abstrakt}
-
-\vskip 0.5cm
-
-{\noindent\color{heading}\bfseries\headfont Klíčová slova\hspace{1em}}{lorem, ipsum dolor, sit amet}
-
-\vskip 1cm
-
-\begin{abstract}% Enter abstract in ENGLISH.
-\lipsum[2]  
-\end{abstract}
-
-\vskip 0.5cm
-
-{\noindent\color{heading}\bfseries\headfont Keywords\hspace{1em}}{lorem, ipsum dolor, sit amet}
-%%%%%%%%%%%%%%%%%%%
-% ABSTRACT END
-%%%%%%%%%%%%%%%%%%%
-
-%%%%%%%%%%%%%%%%%%%
-% SUMMARY
-% FILL IN / MODIFY
-% OR REMOVE ENTIRELY (upon agreement with your supervisor)
-% (apropriate to remove in most theses)
-%%%%%%%%%%%%%%%%%%%
-\chapter{ShrnutĂ­}
-\setlength{\columnsep}{1cm}
-\begin{multicols}{2}
-{\small
-
-\section*{Motivace}
-
-\lipsum[1][1-8]
-
-\section*{Cíl práce}
-
-\lipsum[2][1-6]
-
-\section*{Postup}
-
-\lipsum[3]
-
-\section*{Výsledky práce}
-
-\lipsum[2]
-
-\section*{Závěr}
-
-\lipsum[1][1-8] Lorem lorem lorem.
-}
-\end{multicols}
-%%%%%%%%%%%%%%%%%%%
-% SUMMARY END
-%%%%%%%%%%%%%%%%%%%
-
-%%%%%%%%%%%%%%%%%%%
-% ABBREVIATIONS
-% FILL IN / MODIFY
-% OR REMOVE ENTIRELY
-%%%%%%%%%%%%%%%%%%%
-\chapter{Seznam zkratek}
-	
-\begin{tabular}{rl}
-DFA & Deterministic Finite Automaton\\
-FA & Finite Automaton\\
-LPS & Labelled PrĂĽfer Sequence\\
-NFA & Nondeterministic Finite Automaton\\
-NPS & Numberef PrĂĽfer Sequence\\
-TPA & Tree Paths Automaton\\
-TSPA & Tree String Paths Subsequences Automaton\\
-XML & Extensible Markup Language\\
-XPath & XML Path Language\\
-XSLT & eXtensible Stylesheet Language Transformations\\
-W3C & World Wide Web Consortium
-\end{tabular}
-%%%%%%%%%%%%%%%%%%%
-% ABBREVIATIONS END
-%%%%%%%%%%%%%%%%%%%
-
-\mainmatter
-
-%%%%%%%%%%%%%%%%%%%%
-% MAINMATTER SETTINGS
-% no need to modify this part
-%%%%%%%%%%%%%%%%%%%%
-\makeatletter
-\@openrighttrue
-\makeatother
-
-\titleformat
-{\chapter} % command
-[display] % shape
-{\headfont \LARGE \bfseries \raggedleft} % format
-{ \textcolor{headbackgroundgray}{{\titlerule*[1pc]{\rule{0.25em}{0.25em}}}} \hspace{0.5ex} \color{black} Kapitola \thechapter } % label
-{-0.3cm} % sep
-{\color{heading} \Huge \vskip 0.5cm} % before-code
-[\vskip 1cm] % after-code
-
-%vzhled nadpisĹŻ sekcĂ­
-\titleformat{\section}
-  {\headfont\Large\bfseries\color{heading}}{\colorbox{headbackgroundgray}{{\color{black}\thesection}}}{1em}{}%[\vskip -1em]
-  
-\titleformat{\subsection}
-  {\headfont\Large\bfseries\color{heading}}{{{\color{black}\thesubsection}}}{1em}{}%[\vskip -1em]
-  
-\titleformat{\subsubsection}
-  {\headfont\large\bfseries\color{heading}}{{{\color{black}\thesubsubsection}}}{1em}{}%[\vskip -1em]
-
-%%%%%%%%%%%%%%%%%%%%
-% MAINMATTER SETTINGS END
-%%%%%%%%%%%%%%%%%%%%
-
-%%%%%%%%%%%%%%%%%%%
-% THE THESIS
-% MODIFY ANYTHING BELOW THIS LINE
-%%%%%%%%%%%%%%%%%%%
-\include{text}
-
-\appendix
-
-%%%%%%%%%%%%%%%%%%%%
-% APPENDIX SETTINGS
-% no need to modify this part
-%%%%%%%%%%%%%%%%%%%%
-\titleformat
-{\chapter} % command
-[display] % shape
-{\headfont \LARGE \bfseries \raggedleft} % format
-{ \textcolor{headbackgroundgray}{{\titlerule*[1pc]{\rule{0.25em}{0.25em}}}} \hspace{0.5ex} \color{black} Příloha \thechapter } % label
-{-0.3cm} % sep
-{\color{heading} \Huge \vskip 0.5cm} % before-code
-[\vskip 1cm] % after-code
-
-%%%%%%%%%%%%%%%%%%%%
-% MAINMATTER SETTINGS END
-%%%%%%%%%%%%%%%%%%%%
-
-
-\include{appendix}
-
-\backmatter
-
-\bibliography{bib-database}
-
-\include{medium}
-
-
-\end{document}
-- 
GitLab