Reorganise the repo to allow extracting the hardcover page
parent
86e754b972
commit
9e55e6de29
@ -0,0 +1,27 @@
|
|||||||
|
\input{header}
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\pagestyle{empty}
|
||||||
|
\hypersetup{pageanchor=false}
|
||||||
|
\begin{center}
|
||||||
|
|
||||||
|
\large
|
||||||
|
Charles University
|
||||||
|
|
||||||
|
\medskip
|
||||||
|
|
||||||
|
Faculty of Mathematics and Physics
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
{\huge\bf BACHELOR THESIS}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\hbox to \hsize{\YearSubmitted\hfil \ThesisAuthor}
|
||||||
|
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\newpage\openright
|
||||||
|
|
||||||
|
\end{document}
|
@ -0,0 +1,106 @@
|
|||||||
|
\documentclass[12pt,a4paper]{report}
|
||||||
|
\setlength\textwidth{145mm}
|
||||||
|
\setlength\textheight{247mm}
|
||||||
|
\setlength\oddsidemargin{15mm}
|
||||||
|
\setlength\evensidemargin{15mm}
|
||||||
|
\setlength\topmargin{0mm}
|
||||||
|
\setlength\headsep{0mm}
|
||||||
|
\setlength\headheight{0mm}
|
||||||
|
% \openright makes the following text appear on a right-hand page
|
||||||
|
\let\openright=\clearpage
|
||||||
|
|
||||||
|
%% Settings for two-sided (duplex) printing
|
||||||
|
% \documentclass[12pt,a4paper,twoside,openright]{report}
|
||||||
|
% \setlength\textwidth{145mm}
|
||||||
|
% \setlength\textheight{247mm}
|
||||||
|
% \setlength\oddsidemargin{14.2mm}
|
||||||
|
% \setlength\evensidemargin{0mm}
|
||||||
|
% \setlength\topmargin{0mm}
|
||||||
|
% \setlength\headsep{0mm}
|
||||||
|
% \setlength\headheight{0mm}
|
||||||
|
% \let\openright=\cleardoublepage
|
||||||
|
|
||||||
|
%% Generate PDF/A-2u
|
||||||
|
\usepackage[a-2u]{pdfx}
|
||||||
|
|
||||||
|
%% Character encoding: usually latin2, cp1250 or utf8:
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
|
||||||
|
%% Prefer Latin Modern fonts
|
||||||
|
\usepackage{lmodern}
|
||||||
|
|
||||||
|
%% Further useful packages (included in most LaTeX distributions)
|
||||||
|
\usepackage{amsmath} % extensions for typesetting of math
|
||||||
|
\usepackage{amsfonts} % math fonts
|
||||||
|
\usepackage{amsthm} % theorems, definitions, etc.
|
||||||
|
\usepackage{bbding} % various symbols (squares, asterisks, scissors, ...)
|
||||||
|
\usepackage{bm} % boldface symbols (\bm)
|
||||||
|
\usepackage{graphicx} % embedding of pictures
|
||||||
|
\usepackage{fancyvrb} % improved verbatim environment
|
||||||
|
\usepackage{natbib} % citation style AUTHOR (YEAR), or AUTHOR [NUMBER]
|
||||||
|
\usepackage[nottoc]{tocbibind} % makes sure that bibliography and the lists
|
||||||
|
% of figures/tables are included in the table
|
||||||
|
% of contents
|
||||||
|
\usepackage{dcolumn} % improved alignment of table columns
|
||||||
|
\usepackage{booktabs} % improved horizontal lines in tables
|
||||||
|
\usepackage{paralist} % improved enumerate and itemize
|
||||||
|
\usepackage{xcolor} % typesetting in color
|
||||||
|
\usepackage{csquotes}
|
||||||
|
\usepackage{subcaption}
|
||||||
|
|
||||||
|
\def\X#1{\textcolor{red}{[#1]}}
|
||||||
|
\def\XXX#1{\par\smallskip\noindent \textcolor{red}{[#1]}}
|
||||||
|
|
||||||
|
%%% Basic information on the thesis
|
||||||
|
|
||||||
|
% Thesis title in English (exactly as in the formal assignment)
|
||||||
|
\def\ThesisTitle{Visualizing OSPF topology}
|
||||||
|
|
||||||
|
% Author of the thesis
|
||||||
|
\def\ThesisAuthor{Pavel Turinský}
|
||||||
|
|
||||||
|
% Year when the thesis is submitted
|
||||||
|
\def\YearSubmitted{2023}
|
||||||
|
|
||||||
|
% Name of the department or institute, where the work was officially assigned
|
||||||
|
% (according to the Organizational Structure of MFF UK in English,
|
||||||
|
% or a full name of a department outside MFF)
|
||||||
|
\def\Department{Department of Applied Mathematics}
|
||||||
|
|
||||||
|
% Is it a department (katedra), or an institute (ústav)?
|
||||||
|
\def\DeptType{Department}
|
||||||
|
|
||||||
|
% Thesis supervisor: name, surname and titles
|
||||||
|
\def\Supervisor{Mgr. Martin Mareš, Ph.D.}
|
||||||
|
|
||||||
|
% Supervisor's department (again according to Organizational structure of MFF)
|
||||||
|
\def\SupervisorsDepartment{Department of Applied Mathematics}
|
||||||
|
|
||||||
|
% Study programme and specialization
|
||||||
|
\def\StudyProgramme{Computer Science}
|
||||||
|
\def\StudyBranch{General Computer Science}
|
||||||
|
|
||||||
|
% An optional dedication: you can thank whomever you wish (your supervisor,
|
||||||
|
% consultant, a person who lent the software, etc.)
|
||||||
|
\def\Dedication{%
|
||||||
|
Dedication.
|
||||||
|
}
|
||||||
|
|
||||||
|
% Abstract (recommended length around 80-200 words; this is not a copy of your thesis assignment!)
|
||||||
|
\def\Abstract{%
|
||||||
|
Abstract. \X{Recommended length around 80--200 words. This is not a~copy of your thesis assignment!}
|
||||||
|
}
|
||||||
|
|
||||||
|
% 3 to 5 keywords (recommended), each enclosed in curly braces
|
||||||
|
\def\Keywords{%
|
||||||
|
{key} {words} \X{usually 3 to~5 key words or phrases}
|
||||||
|
}
|
||||||
|
|
||||||
|
%% The hyperref package for clickable links in PDF and also for storing
|
||||||
|
%% metadata to PDF (including the table of contents).
|
||||||
|
%% Most settings are pre-set by the pdfx package.
|
||||||
|
\hypersetup{unicode}
|
||||||
|
\hypersetup{breaklinks=true}
|
||||||
|
|
||||||
|
% Definitions of macros (see description inside)
|
||||||
|
\input{macros}
|
Loading…
Reference in New Issue