-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
149 lines (116 loc) · 3.23 KB
/
main.tex
File metadata and controls
149 lines (116 loc) · 3.23 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
\documentclass[12pt,a4paper,openany]{report}
\newcommand\tab[1][1cm]{\hspace*{#1}}
\usepackage{amsmath,amsthm,amssymb,graphicx,hyperref}
\usepackage[left=1.2in,right=1.2in,top=1in,bottom=1in]{geometry}
%\usepackage[romanian]{babel}
\usepackage[english]{babel}
\usepackage{xcolor}
\usepackage{paralist}
\RequirePackage{hyphenat}
\usepackage{algorithmic, algorithm}
\usepackage[inline]{enumitem}
\usepackage{fancyhdr}
\usepackage{listings}
\lstloadlanguages{C,C++,csh,Java}
\usepackage{color}
\fancypagestyle{plain}{%
\fancyhf{}% Clear header and footer
\renewcommand{\headrulewidth}{0pt}% Remove header rule
}
\definecolor{red}{rgb}{0.6,0,0}
\definecolor{blue}{rgb}{0,0,0.6}
\definecolor{green}{rgb}{0,0.8,0}
\definecolor{cyan}{rgb}{0.0,0.6,0.6}
\definecolor{mycream}{RGB}{255, 250, 240}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\theoremstyle{definition}
\newtheorem{defn}{Definition}[section]
\theoremstyle{remark}
\newtheorem{rem}{Remark}[section]
\newtheorem{exmp}{Example}[section]
\title{BCI Applications Platform}
\author{Mihai-David Vuescu}
\begin{document}
\sloppy
\thispagestyle{empty}
\begin{center}
\begin{figure}[h!]
\vspace{-20pt}
\begin{center}
\includegraphics[width=100pt]{Graphics/FMI Logo.png}
\end{center}
\end{figure}
{\large{\bf WEST UNIVERSITY OF TIMI\c SOARA
FACULTY OF MATHEMATICS AND COMPUTER SCIENCE
BACHELOR STUDY PROGRAM: Applied Computer Science}}
\vspace{120pt}
{\huge {\bf BACHELOR THESIS}}
\vspace{160pt}
\end{center}
{\large\noindent{\bf SUPERVISOR:
\hspace{172pt} GRADUATE: }
\noindent Conf. Dr. Cosmin Bonchis \hfill
\noindent Mihai-David Vuescu
}
\vfill
\begin{center}
{\bf TIMI\c SOARA
2023}
\end{center}
\newpage
\thispagestyle{empty}
\begin{center}
{\large{\bf WEST UNIVERSITY OF TIMI\c SOARA
FACULTY OF MATHEMATICS AND COMPUTER SCIENCE
BACHELOR STUDY PROGRAM: Applied Computer Science}}
\vspace{200pt}
{\huge {\bf B.C.I. Applications Platform }}
\vspace{153pt}
\end{center}
{\large\noindent{\bf SUPERVISOR:\hfill GRADUATE:}
\noindent Conf. Dr. Cosmin Bonchis\hfill
\noindent Mihai-David Vuescu}
\vfill
\begin{center}
{\bf TIMI\c SOARA
2023}
\end{center}
\tableofcontents
\input{Chapter 0 - Abstract.tex}
\input{Chapter 1 - Introduction.tex}
\input{Chapter 2 - Theoretical Basis}
\input{Chapter 3 - Creating a BCI Application Platform}
\input{Chapter 4 - Creating an App Installer}
\input{Chapter 5 - Future Improvements}
\input{Chapter 6 - Conclusion}
\clearpage
\phantomsection % Ensure correct hyperlinks
\bibliography{bibliography}
\bibliographystyle{unsrt}
\addcontentsline{toc}{chapter}{Bibliography}
\label{sec:bibliography}
\end{document}