-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thesis.tex
158 lines (130 loc) · 6.48 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
%& --translate-file=cp1250pl.tcx %%%%%%%%%%%%%%
%% ----------------------------------------------------------------
%% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
%% ----------------------------------------------------------------
% Set up the document
\documentclass[a4paper, 11pt, oneside]{Thesis}
\graphicspath{{Figures/}{wykresy/}}
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse
\else
\pdfoutput=1
\pdftrue
\fi
\ifpdf
\usepackage{graphicx}
\usepackage{epstopdf}
\DeclareGraphicsRule{.eps}{pdf}{.pdf}{`epstopdf #1}
\pdfcompresslevel=9
\else
\usepackage{graphicx}
\fi
\usepackage{polski}
\usepackage{todonotes}
\usepackage{listing}
\lstset{ %
language=C++, % choose the language of the code
basicstyle=\footnotesize, % the size of the fonts that are used for the code
% showspaces=false, % show spaces adding particular underscores
% showstringspaces=false, % underline spaces within strings
% showtabs=false, % show tabs within strings adding particular underscores
% frame=single, % adds a frame around the code
% tabsize=2, % sets default tabsize to 2 spaces
% captionpos=b, % sets the caption-position to bottom
% breaklines=true, % sets automatic line breaking
% breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
escapeinside={\%*}{*)} % if you want to add a comment within your code
}
\renewcommand{\lstlistlistingname}{Spis kodów Ÿród³owych} % Label of Table of Listings
\renewcommand{\lstlistingname}{Listing} % Label for every Listing
% Include any extra LaTeX packages required
\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
\hypersetup{urlcolor=blue, colorlinks=true} % Colours hyperlinks in blue, but this can be distracting if there are many links.
\begin{document}
\frontmatter
\title { Projekt i implementacja aplikacji realizuj¹cej operacje arytmetyczne na kwantyfikatorach lingiwistycznych}
\authors {\texorpdfstring{Bartosz Tacza³a}
{Author Name}
}
\addresses {\groupname\\\deptname\\\univname}
\maketitle
\addtotoc{Abstract}
\abstract{
\addtocontents{toc}{\vspace{1em}}
Analitic solution of decisive problems, based only on probabilities of event occurence, is extermally difficult and time-consuming and in most cases incorrect due to arithmetic exceptions made in progress of calculations.
In This Master Thesis I will introduce author's application, capable of resolving those decision problems, by capably operating of probability distribution functions for probabilities given in problem. The main focus is on the methodology of solving such problem and as a particular example the problem of "Two business" is solved.
}
\clearpage
\setstretch{1.3}
\fancyhead{}
\rhead{\thepage}
\lhead{}
\pagestyle{fancy}
\Declaration{
\addtocontents{toc}{\vspace{1em}}
Oœwiadczam, ze przedk³adan¹ pracê magistersk¹ koñcz¹c¹ studia napisa³em samodzielnie.
Oznacza to, ze przy pisaniu pracy poza niezbêdnymi konsultacjami, nie korzysta³em
z pomocy innych osób, a w szczególnoœci nie zleca³em opracowania rozprawy lub
jej czêœci innym osobom, ani nie odpisywa³em rozprawy lub jej czêœci od innych osób.
Potwierdzam tez zgodnoœæ wersji papierowej i elektronicznej z³o¿onej pracy. Mam œwiadomoœæ,¿e poœwiadczenie nieprawdy bêdzie w tym przypadku skutkowa³o cofniêciem
decyzji o wydaniu dyplomu.
Podpis:\\
\rule[1em]{25em}{0.5pt} % This prints a line for the signature
Data:\\
\rule[1em]{25em}{0.5pt} % This prints a line to write the date
}
\clearpage % Declaration ended, now start a new page
% The Abstract Page
\pagestyle{fancy}
\lhead{\emph{Spis treœci}}
\tableofcontents
%% ----------------------------------------------------------------
\lhead{\emph{Spis rysunków}} % Set the left side page header to "List if Figures"
\listoffigures
\addtotoc{Spis kodów Ÿród³owych} % Add the "Abstract" page entry to the Contents
\lstlistoflistings
\clearpage % Start a new page
%% ----------------------------------------------------------------
\setstretch{1.5} % Set the line spacing to 1.5, this makes the following tables easier to read
\clearpage % Start a new page
\lhead{\emph{Skróty}} % Set the left side page header to "Abbreviations"
\listofsymbols{lll} % Include a list of Abbreviations (a table of two columns)
{
\textbf{STL} & \textbf{S}tandard \textbf{T}emplate \textbf{L}ibrary \\
\textbf{GCC} & \textbf{G}nu \textbf{C}ommon \textbf{C}compilers \\
\textbf{G++} & kompilator jêzyka C++ z pakietu GCC \\
\textbf{MSVC} & \textbf{M}icro\textbf{S}oft \textbf{V}isual \textbf{C}++ \\
\textbf{IDE} & \textbf{I}ntegrated \textbf{D}evelopment \textbf{E}nvironment
\textbf{GDB} & \textbf{G}nu \textbf{D}e\textbf{b}ugger
}
\clearpage %Start a new page
\lhead{\emph{Symbole}} % Set the left side page header to "Symbols"
\listofnomenclature{lll} % Include a list of Symbols (a three column table)
{
$\oplus$ - Operacja dodowania kwantyfikatorów lingwistycznych \\
$\ominus$ - Operacja odejmowania kwantyfikatorów lingwistycznych\\
$\otimes$ - Operacja mno¿enia kwantyfikatorów lingwistycznych\\
$\oslash$ - Operacja dzielenia kwantyfikatorów lingwistycznych \\
}
\setstretch{1.3}
%% ----------------------------------------------------------------
\mainmatter
\pagestyle{fancy}
\input{./Chapters/Chapter1}
\input{./Chapters/Chapter2}
\input{./Chapters/Chapter3}
\input{./Chapters/Chapter4}
\addtocontents{toc}{\vspace{2em}}
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
%% ----------------------------------------------------------------
\label{Bibliografia}
\lhead{\emph{Bibliografia}} % Change the left side page header to "Bibliography"
\bibliographystyle{plplain} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
\end{document} % The End
%% ----------------------------------------------------------------