-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
60 lines (40 loc) · 1.16 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
% !TeX spellcheck = en_CA
\documentclass[11pt,oneside]{book}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[margin=2.5cm,left=3cm]{geometry}
%\usepackage{pdfcomment}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage[nottoc]{tocbibind}
\usepackage{xcolor}
\usepackage[pdftex,colorlinks=true,linkcolor=blue,citecolor=red]{hyperref}
\usepackage{datetime}
\usepackage{lipsum}
%% Automaticky generovane zkratky
\usepackage[xindy]{glossaries}
\makeglossaries
\include{zkratky}
%\addto\captionsenglish{\renewcommand{\figurename}{Fig.}}
\newcommand{\figref}[1]{\figurename~\ref{#1}}
\newcommand{\tabref}[1]{Table \ref{#1}}
\newcommand{\secref}[1]{Section \ref{#1}}
% Document metadata
\author{Ing. Name Surname}
\title{Very Long Name of Disertation Thesis Dealing With Some Science}
\begin{document}
\frontmatter
\maketitle
\input{chapters/abstract}
\tableofcontents
\mainmatter
\input{chapters/test_chapter}
\appendix
\input{chapters/appendix}
\backmatter
\bibliographystyle{IEEEtran} %The style you want to use for references.
\bibliography{literature}
\end{document}