go(report): add report_base.tex,meta.sty
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-07-17 22:18:27 +02:00
parent fda5f46623
commit 602ee8206f
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 58 additions and 0 deletions

8
report/meta.sty Normal file
View File

@ -0,0 +1,8 @@
\newcommand{\doctitle}{Semestral project}
\newcommand{\authorname}{Adam Mirre}
\newcommand{\faculty}{Faculty of Applied Informatics}
\newcommand{\shortfaculty}{FAI}
\newcommand{\uni}{Tomas Bata University in Zlín}
\newcommand{\coursecode}{AK8MI}
\newcommand{\subject}{Stochastic Heuristic Algorithms Implementation and Statistical Cross-Comparison Report}
\newcommand{\acyear}{2022}

50
report/report_base.tex Normal file
View File

@ -0,0 +1,50 @@
\documentclass[12pt,a4paper]{article}
\usepackage{geometry}
\geometry{
a4paper,
top=18mm,
bottom=19mm,
left=12mm,
right=12mm,
}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[fleqn]{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{hyperref}
\usepackage{etoolbox}
\usepackage{longtable}
\usepackage{svg}
\usepackage{meta}
\usepackage[affil-it]{authblk}
\date{\today}
\title{\subject{} \\ \\ \small{\coursecode{}}}
\author[1]{\authorname{} (\href{https://git.dotya.ml/wanderer}{wanderer})}
\begin{document}
\affil{\faculty{}, \uni{}}
\maketitle
\pagebreak
\tableofcontents
\pagebreak
\input{allpics}
\newpage
\input{alltables}
\newpage
\listoffigures
\listoftables
\end{document}
% vim: tw=0 wrap sw=2 ts=2 bs=2 expandtab