Initial commit – set up base document template

This commit is contained in:
Kristóf Tóth 2018-11-26 14:02:52 +01:00
commit 6525b8a6fd
7 changed files with 120 additions and 0 deletions

4
content/abstract.tex Normal file
View File

@ -0,0 +1,4 @@
\section*{Abstract}
\addcontentsline{toc}{section}{Abstract}
During my thesis work I became a caffeine addict.

25
content/declaration.tex Normal file
View File

@ -0,0 +1,25 @@
\begin{otherlanguage}{magyar}
\begin{center}
\large
\textbf{HALLGATÓI NYILATKOZAT}\\
\end{center}
Alulírott \emph{Tóth Kristóf}, szigorló hallgató kijelentem, hogy ezt a szakdolgozatot meg nem engedett segítség nélkül, saját magam készítettem, csak a megadott forrásokat (szakirodalom, eszközök stb.) használtam fel. Minden olyan részt, melyet szó szerint, vagy azonos értelemben, de átfogalmazva más forrásból átvettem, egyértelműen, a forrás megadásával megjelöltem.
Hozzájárulok, hogy a jelen munkám alapadatait (szerző(k), cím, angol és magyar nyelvű tartalmi kivonat, készítés éve, konzulens(ek) neve) a BME VIK nyilvánosan hozzáférhető elektronikus formában, a munka teljes szövegét pedig az egyetem belső hálózatán keresztül (vagy autentikált felhasználók számára) közzétegye. Kijelentem, hogy a benyújtott munka és annak elektronikus verziója megegyezik. Dékáni engedéllyel titkosított diplomatervek esetén a dolgozat szövege csak 3 év eltelte után válik hozzáférhetővé.
\begin{flushleft}
\vspace*{1cm}
Budapest, \today
\end{flushleft}
\begin{flushright}
\vspace*{1cm}
\makebox[7cm]{\rule{6cm}{.4pt}}\\
\makebox[7cm]{\emph{Tóth Kristóf}}\\
\makebox[7cm]{hallgató}
\end{flushright}
\thispagestyle{empty}
\end{otherlanguage}

4
content/introduction.tex Normal file
View File

@ -0,0 +1,4 @@
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction}
I really seem to like cats.

24
content/titlepage.tex Normal file
View File

@ -0,0 +1,24 @@
\begin{center}
\thispagestyle{empty}
\includegraphics[width=120mm,keepaspectratio]{figures/bme_logo.pdf}\\
\vspace{0.3cm}
\textbf{Budapest University of Technology and Economics}\\
\textmd{Faculty of Electrical Engineering and Informatics}\\
\textmd{Department of Networked Systems and Services}\\[5cm]
\vspace{0.4cm}
{\huge \textbf{Designing and Developing a Framework for Tutorials on an Online Learning Platform}}\\[0.8cm]
\vspace{0.5cm}
\textsc{\Large Bachelor's Thesis}\\[4cm]
{
\renewcommand{\arraystretch}{0.85}
\begin{tabular}{ccc}
\makebox[5cm]{\emph{Author}} & \makebox[5cm]{\emph{Advisor}} & \makebox[5cm]{\emph{External Advisor}}\\ \noalign{\smallskip}
\makebox[5cm]{Kristóf Tóth} & \makebox[5cm]{Dr.~Levente Buttyán} & \makebox[5cm]{Dr.~Gábor Pék} \\
\end{tabular}
}
\vfill
{\large \today}
\end{center}

BIN
figures/bme_logo.pdf Normal file

Binary file not shown.

29
latexplate.sty Normal file
View File

@ -0,0 +1,29 @@
\RequirePackage
{
fontspec,
fancyhdr,
lmodern,
hyperref,
graphicx,
float,
ragged2e,
soul,
sectsty,
xcolor,
microtype,
tabto
}
\RequirePackage[bottom,hang,flushmargin]{footmisc}
\definecolor{andigray}{RGB}{237,237,237}
\sethlcolor{andigray}
\newcommand{\code}[1]{\hl{\mbox{#1}}}
\newcommand{\pic}[3][width=\textwidth]
{
\begin{figure}[H]
\centering
\includegraphics[#1]{#2}
\caption{#3}
\end{figure}
}

34
thesis.tex Normal file
View File

@ -0,0 +1,34 @@
\documentclass[12pt,a4paper]{article}
\usepackage{latexplate}
\usepackage[top=25mm,bottom=25mm,left=15mm,right=15mm]{geometry}
\usepackage[magyar,english]{babel}
\usepackage[defaultlines=5,all]{nowidow}
\usepackage{advdate}
\setmainfont{Constantia}
\setsansfont{Constantia}
\setmonofont{Constantia}
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
\fancyfoot{}
\pagestyle{fancy}
\fancyfoot[C]{\thepage}
\newcommand{\crule}{\rule{\textwidth}{1px}\\\\}
\begin{document}
\include{content/titlepage}
\microtypesetup{protrusion=false}
\tableofcontents
\microtypesetup{protrusion=true}
\thispagestyle{empty}
\cleardoublepage
\include{content/declaration}
\include{content/abstract}
\include{content/introduction}
\end{document}