]> mj.ucw.cz Git - diplomky.git/blob - en/thesis.tex
Opraveny pomlčky v ukázkové bibliografii
[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 % Author of the thesis
42 \def\ThesisAuthor{Name Surname}
43
44 % Year when the thesis is submitted
45 \def\YearSubmitted{YEAR}
46
47 % Name of the department or institute, where the work was officially assigned
48 % (according to the Organizational Structure of MFF UK in English,
49 % or a full name of a department outside MFF)
50 \def\Department{Name of the department}
51
52 % Is it a department (katedra), or an institute (ústav)?
53 \def\DeptType{Department}
54
55 % Thesis supervisor: name, surname and titles
56 \def\Supervisor{Supervisor's Name}
57
58 % Supervisor's department (again according to Organizational structure of MFF)
59 \def\SupervisorsDepartment{department}
60
61 % Study programme and specialization
62 \def\StudyProgramme{study programme}
63 \def\StudyBranch{study branch}
64
65 % An optional dedication: you can thank whomever you wish (your supervisor,
66 % consultant, a person who lent the software, etc.)
67 \def\Dedication{%
68 Dedication.
69 }
70
71 % Abstract (recommended length around 80-200 words; this is not a copy of your thesis assignment!)
72 \def\Abstract{%
73 Abstract.
74 }
75
76 % 3 to 5 keywords (recommended), each enclosed in curly braces
77 \def\Keywords{%
78 {key} {words}
79 }
80
81 %% The hyperref package for clickable links in PDF and also for storing
82 %% metadata to PDF (including the table of contents).
83 \usepackage[pdftex,unicode]{hyperref}   % Must follow all other packages
84 \hypersetup{breaklinks=true}
85 \hypersetup{pdftitle={\ThesisTitle}}
86 \hypersetup{pdfauthor={\ThesisAuthor}}
87 \hypersetup{pdfkeywords=\Keywords}
88
89 \input title.tex
90
91 %%% A page with automatically generated content of the bachelor thesis. For
92 %%% a mathematical thesis, it is permissible to have a list of tables and abbreviations,
93 %%% if any, at the beginning of the thesis instead of at its end.
94
95 \tableofcontents
96
97 %%% Each chapter is kept in a separate file
98 \include{preface}
99 \include{chap1}
100 \include{chap2}
101
102 % An example of LaTeX use (uncomment, if you wish)
103 % \include{example}
104
105 \include{epilog}
106
107 %%% Bibliography
108 \include{bibliography}
109
110 %%% Figures used in the thesis (consider if this is needed)
111 \listoffigures
112
113 %%% Tables used in the thesis (consider if this is needed)
114 \listoftables
115
116 %%% Abbreviations used in the thesis, if any, including their explanation
117 \chapwithtoc{List of Abbreviations}
118
119 %%% Attachments to the bachelor thesis, if any (various additions such
120 %%% as programme extracts, diagrams, etc.). Each attachment must be referred to
121 %%% at least once from one's own text of the thesis. Attachments are numbered.
122 \chapwithtoc{Attachments}
123
124 \openright
125 \end{document}