]> mj.ucw.cz Git - diplomky.git/blob - en/thesis.tex
0cb304630fc28e790ceaaefe2c6f25f598493564
[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 % Recommended layout mentions line spacing 1.5, but this is not relevant to TeX.
15 % \openright makes the following text appear on a right-hand page
16 \let\openright=\clearpage
17
18 %% Settings for two-sided (duplex) printing
19 % \documentclass[12pt,a4paper,twoside,openright]{report}
20 % \setlength\textwidth{145mm}
21 % \setlength\textheight{247mm}
22 % \setlength\oddsidemargin{14.2mm}
23 % \setlength\evensidemargin{0mm}
24 % \setlength\topmargin{0mm}
25 % \setlength\headsep{0mm}
26 % \setlength\headheight{0mm}
27 % \let\openright=\cleardoublepage
28
29 %% Character encoding: usually latin2, cp1250 or utf8:
30 \usepackage[utf8]{inputenc}
31
32 %% Further packages
33 \usepackage{graphicx}
34 \usepackage{amsthm}
35
36 %%% Basic information on the thesis
37
38 % Thesis title in English (exactly as in the formal assignment)
39 \def\ThesisTitle{Thesis title}
40
41 % Translation of the title to Czech
42 \def\ThesisTitleCS{Název práce}
43
44 % Author of the thesis
45 \def\ThesisAuthor{Name Surname}
46
47 % Year when the thesis is submitted
48 \def\YearSubmitted{YEAR}
49
50 % Name of the department or institute, where the work was officially assigned
51 % (according to the Organizational Structure of MFF UK in English,
52 % or a full name of a department outside MFF)
53 \def\Department{Name of the department}
54 \def\DepartmentCS{Název katedry nebo ústavu}
55
56 % Is it a department (katedra), or an institute (ústav)?
57 \def\DeptType{Department}
58 \def\DeptTypeCS{Katedra}
59
60 % Thesis supervisor: name, surname and titles
61 \def\Supervisor{Supervisor's Name}
62
63 % Supervisor's department (again according to Organizational structure of MFF)
64 \def\SupervisorsDepartment{department}
65 \def\SupervisorsDepartmentCS{pracoviště}
66
67 % Study programme and specialization
68 \def\StudyProgramme{study programme}
69 \def\StudyBranch{study branch}
70
71 % An optional dedication: you can thank whomever you wish (your supervisor,
72 % consultant, a person who lent the software, etc.)
73 \def\Dedication{%
74 Dedication.
75 }
76
77 % Abstract (around 80-200 words; this is not a copy of your thesis assignment!)
78 \def\Abstract{%
79 Abstract.
80 }
81 \def\AbstractCS{%
82 Abstract.
83 }
84
85 % 3 to 5 keywords, each enclosed in curly braces
86 \def\Keywords{%
87 {klíčová} {slova}
88 }
89 \def\KeywordsCS{%
90 {key} {words}
91 }
92
93 %% The hyperref package for clickable links in PDF and also for storing
94 %% metadata to PDF (including the table of contents).
95 \usepackage[pdftex,unicode]{hyperref}   % Must follow all other packages
96 \hypersetup{breaklinks=true}
97 \hypersetup{pdftitle={\ThesisTitle}}
98 \hypersetup{pdfauthor={\ThesisAuthor}}
99 \hypersetup{pdfkeywords=\Keywords}
100
101 \input title.tex
102
103 %%% A page with automatically generated content of the bachelor thesis. For
104 %%% a mathematical thesis, it is permissible to have a list of tables and abbreviations,
105 %%% if any, at the beginning of the thesis instead of at its end.
106
107 \openright
108 \pagestyle{plain}
109 \setcounter{page}{1}
110 \tableofcontents
111
112 %%% Each chapter is kept in a separate file
113 \include{preface}
114 \include{chap1}
115 \include{chap2}
116
117 % An example of LaTeX use (uncomment, if you wish)
118 % \include{example}
119
120 \include{epilog}
121
122 %%% Bibliography
123 \include{bibliography}
124
125 %%% Figures used in the thesis (consider if this is needed)
126 \listoffigures
127
128 %%% Tables used in the thesis (consider if this is needed)
129 \listoftables
130
131 %%% Abbreviations used in the thesis, if any, including their explanation
132 \chapwithtoc{List of Abbreviations}
133
134 %%% Attachments to the bachelor thesis, if any (various additions such
135 %%% as programme extracts, diagrams, etc.). Each attachment must be referred to
136 %%% at least once from one's own text of the thesis. Attachments are numbered.
137 \chapwithtoc{Attachments}
138
139 \openright
140 \end{document}