]> mj.ucw.cz Git - diplomky.git/blob - en/thesis.tex
Nedávné změny integrovány i do anglické verze
[diplomky.git] / en / thesis.tex
1 %%% The main file. It contains definitions of basic parameters and includes all other parts.
2
3 %% Settings for single-side (simplex) printing
4 % Margins: left 40mm, right 25mm, top and bottom 25mm
5 % (but beware, LaTeX adds 1in implicitly)
6 \documentclass[12pt,a4paper]{report}
7 \setlength\textwidth{145mm}
8 \setlength\textheight{247mm}
9 \setlength\oddsidemargin{15mm}
10 \setlength\evensidemargin{15mm}
11 \setlength\topmargin{0mm}
12 \setlength\headsep{0mm}
13 \setlength\headheight{0mm}
14 % \openright makes the following text appear on a right-hand page
15 \let\openright=\clearpage
16
17 %% Settings for two-sided (duplex) printing
18 % \documentclass[12pt,a4paper,twoside,openright]{report}
19 % \setlength\textwidth{145mm}
20 % \setlength\textheight{247mm}
21 % \setlength\oddsidemargin{14.2mm}
22 % \setlength\evensidemargin{0mm}
23 % \setlength\topmargin{0mm}
24 % \setlength\headsep{0mm}
25 % \setlength\headheight{0mm}
26 % \let\openright=\cleardoublepage
27
28 %% Character encoding: usually latin2, cp1250 or utf8:
29 \usepackage[utf8]{inputenc}
30
31 %% Further useful packages (included in most LaTeX distributions)
32 \usepackage{amsmath}        % extensions for typesetting of math
33 \usepackage{amsfonts}       % math fonts
34 \usepackage{amsthm}         % theorems, definitions, etc.
35 \usepackage{bbding}         % various symbols (squares, asterisks, scissors, ...)
36 \usepackage{bm}             % boldface symbols (\bm)
37 \usepackage{graphicx}       % embedding of pictures
38 \usepackage{fancyvrb}       % improved verbatim environment
39 \usepackage{natbib}         % citation style AUTHOR (YEAR), or AUTHOR [NUMBER]
40 \usepackage[nottoc]{tocbibind} % makes sure that bibliography and the lists
41                             % of figures/tables are included in the table
42                             % of contents
43 \usepackage{dcolumn}        % improved alignment of table columns
44 \usepackage{booktabs}       % improved horizontal lines in tables
45 \usepackage{paralist}       % improved enumerate and itemize
46 \usepackage[usenames]{xcolor}  % typesetting in color
47
48 %% SPECIMEN
49 % Parts marked as SPECIMEN are used for building the example PDF.
50 % When the official template is generated by ./mkdist, all such parts
51 % are deleted, as well as all calls of \X and \XXX macros.
52 \def\X#1{\textcolor{red}{[#1]}}
53 \def\XXX#1{\par\smallskip\noindent \textcolor{red}{[#1]}}
54 %% NEMICEPS
55
56 %%% Basic information on the thesis
57
58 % Thesis title in English (exactly as in the formal assignment)
59 \def\ThesisTitle{Thesis title \X{as in the formal assignment}}
60
61 % Author of the thesis
62 \def\ThesisAuthor{Name Surname}
63
64 % Year when the thesis is submitted
65 \def\YearSubmitted{YEAR}
66
67 % Name of the department or institute, where the work was officially assigned
68 % (according to the Organizational Structure of MFF UK in English,
69 % or a full name of a department outside MFF)
70 \def\Department{Name of the department \X{as per Organizational Structure of MFF UK in English}}
71
72 % Is it a department (katedra), or an institute (ústav)?
73 \def\DeptType{Department}
74
75 % Thesis supervisor: name, surname and titles
76 \def\Supervisor{Supervisor's Name \X{+titles}}
77
78 % Supervisor's department (again according to Organizational structure of MFF)
79 \def\SupervisorsDepartment{department}
80
81 % Study programme and specialization
82 \def\StudyProgramme{study programme}
83 \def\StudyBranch{study branch}
84
85 % An optional dedication: you can thank whomever you wish (your supervisor,
86 % consultant, a person who lent the software, etc.)
87 \def\Dedication{%
88 Dedication.
89 }
90
91 % Abstract (recommended length around 80-200 words; this is not a copy of your thesis assignment!)
92 \def\Abstract{%
93 Abstract. \X{Recommended length around 80--200 words. This is not a~copy of your thesis assignment!}
94 }
95
96 % 3 to 5 keywords (recommended), each enclosed in curly braces
97 \def\Keywords{%
98 {key} {words} \X{usually 3 to~5 key words or phrases}
99 }
100
101 %% The hyperref package for clickable links in PDF and also for storing
102 %% metadata to PDF (including the table of contents).
103 \usepackage[pdftex,unicode]{hyperref}   % Must follow all other packages
104 \hypersetup{breaklinks=true}
105 \hypersetup{pdftitle={\ThesisTitle}}
106 \hypersetup{pdfauthor={\ThesisAuthor}}
107 \hypersetup{pdfkeywords=\Keywords}
108 \hypersetup{urlcolor=blue}
109
110 % Definitions of macros (see description inside)
111 \include{macros}
112
113 % Title page and various mandatory informational pages
114 \begin{document}
115 \include{title}
116
117 %%% A page with automatically generated table of contents of the bachelor thesis
118
119 \tableofcontents
120
121 %%% Each chapter is kept in a separate file
122 \include{preface}
123 \include{chap01}
124 \include{chap02}
125
126 \include{epilog}
127
128 %%% Bibliography
129 \include{bibliography}
130
131 %%% Figures used in the thesis (consider if this is needed)
132 \listoffigures
133
134 %%% Tables used in the thesis (consider if this is needed)
135 %%% In mathematical theses, it could be better to move the list of tables to the beginning of the thesis.
136 \listoftables
137 \XXX{In mathematical theses, it could be better to move the list of tables to the beginning of the thesis.}
138
139 %%% Abbreviations used in the thesis, if any, including their explanation
140 %%% In mathematical theses, it could be better to move the list of abbreviations to the beginning of the thesis.
141 \chapwithtoc{List of Abbreviations}
142 \XXX{In mathematical theses, it could be better to move the list of abbreviations to the beginning of the thesis.}
143
144 %%% Attachments to the bachelor thesis, if any. Each attachment must be
145 %%% referred to at least once from the text of the thesis. Attachments
146 %%% are numbered.
147 %%%
148 %%% The printed version should preferably contain attachments, which can be
149 %%% read (additional tables and charts, supplementary text, examples of
150 %%% program output, etc.). The electronic version is more suited for attachments
151 %%% which will likely be used in an electronic form rather than read (program
152 %%% source code, data files, interactive charts, etc.). Electronic attachments
153 %%% should be uploaded to SIS and optionally also included in the thesis on a~CD/DVD.
154 \chapwithtoc{Attachments}
155 \XXX{Attachments to the bachelor thesis, if any. Each attachment must be referred to at least once from the text of the thesis. Attachments are numbered.}
156 \XXX{The printed version should preferably contain attachments, which can be read (additional tables and charts, supplementary text, examples of program output, etc.). The electronic version is more suited for attachments which will likely be used in an electronic form rather than read (program source code, data files, interactive charts, etc.). Electronic attachments should be uploaded to SIS and optionally also included in the thesis on a~CD/DVD.}
157
158 \openright
159 \end{document}