-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
101 lines (86 loc) · 2.96 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
\documentclass[11pt,a4paper]{book}
\usepackage{settings}
% PDF Settings
\hypersetup{%
pdftitle={Simulating the phenomena of altered states of consciousness using virtual reality},
pdfauthor={Jakub Hlusička},
pdfsubject={Simulating the phenomena of altered states of consciousness using virtual reality},
colorlinks=true,
linkcolor=Bittersweet,
citecolor=Bittersweet,
urlcolor=Bittersweet
}
\addbibresource{./refs.bib}
\let\cleardoublepage=\clearpage
% Enable/Disable graphics to speed up rendering/compilation time during writing.
% Use `\ifgraphics ... \fi` to declare blocks affected by the toggle.
\newif\ifgraphics
\graphicstrue % Enable graphics
% \graphicsfalse % Disable graphics
% Enable/Disable the inclusion of the unsigned project specification
\newif\ifprojectspec
\projectspectrue
% \projectspecfalse
\begin{document}
% Warning about the graphics being disabled, if that's the case.
\ifgraphics\else
\begin{huge}
\textcolor{red}{Graphics are disabled. Document is incomplete.}\\
Enable graphics by using \texttt{\textbackslash graphicstrue} in \texttt{main.tex}.
\end{huge}
\fi
% Title Page EN
\title{SimR}
\subtitle{Simulating the phenomena of altered states of consciousness using virtual reality}
\author{Bc. Jakub Hlusička}
\doctype{Master's~Thesis}
\universitylogo{ctu/logos/logo_cvut_en.pdf}
\university{Czech\\Technical\\University\\in~Prague}
\facultynum{F3}
\faculty{Faculty~of~Electrical~Engineering}
\department{Department~of~Computer~Graphics~and~Interaction}
\promotors{Supervisor: Ing. Josef Kortan}
\date{2021\textendash2022}
\maketitle
\shipout\null % blank page
% % Title Page CZ
\title{SimR}
\subtitle{Simulace fenoménů pozměněných stavů\\vědomí pomocí virtuální reality}
\author{Bc. Jakub Hlusička}
\doctype{Diplomov\'a~pr\'ace}
\universitylogo{ctu/logos/logo_CVUT.pdf}
\university{\v Cesk\'e\\ vysok\'e \\ u\v cen\'i~technick\'e \\ v~Praze}
\facultynum{F3}
\faculty{Fakulta~elektrotechnická}
\department{Katedra~počítačové~grafiky~a~interakce}
\promotors{Školitel: Ing. Josef Kortan}
\date{2021\textendash2022}
\maketitle
\shipout\null % blank page
\frontmatter
\input{tex/abstract}
\input{tex/acknowledgement}
\input{tex/declaration}
\dominitoc[n] \tableofcontents
\mainmatter
\input{tex/introduction}
\input{tex/background}
\addtocontents{toc}{\protect\newpage} % Continue table of contents on next page
\input{tex/implementation}
\input{tex/evaluation}
\input{tex/conclusion}
% \backmatter % disable section numbering
\appendix
% \makeatletter
% \renewcommand{\thesection}{\thechapter\@arabic\c@section}
% \renewcommand{\thesubsection}{\thesection\@arabic\c@section}
% \renewcommand{\thesubsubsection}{\thesubsection\@arabic\c@section}
% \makeatother
\input{tex/acronyms}
\printbibliography{}
\addcontentsline{toc}{chapter}{Bibliography}
\input{tex/appendix-questionnaire}
\input{tex/appendix-informed-consent}
\input{tex/appendix-analysis-remarks}
\input{tex/appendix-project-specification}
\end{document}