98 lines
2.1 KiB
TeX
98 lines
2.1 KiB
TeX
|
|
%
|
||
|
|
% This document is a replication of the original Template_for_a_Thesis_042020.dotx
|
||
|
|
% attempting to replicate the style in LATEX
|
||
|
|
%
|
||
|
|
% Created by: Eduardo Luis Hofmann
|
||
|
|
% Date: 09/09/2020
|
||
|
|
% License: GPL-3.0-or-later
|
||
|
|
|
||
|
|
% Using TexStudio and compiling with lualatex
|
||
|
|
|
||
|
|
|
||
|
|
%\documentclass[a4paper,11pt]{article}
|
||
|
|
\documentclass[a4paper,11pt]{memoir}
|
||
|
|
|
||
|
|
\usepackage{graphicx} %for graphics image loading
|
||
|
|
\usepackage[sfdefault,lining]{FiraSans}
|
||
|
|
\usepackage[fakebold]{firamath-otf}
|
||
|
|
|
||
|
|
%to minimize use of hyphenation
|
||
|
|
\spaceskip=1.3\fontdimen2\font plus 1.3\fontdimen3\font minus 1.3\fontdimen4\font
|
||
|
|
|
||
|
|
% change paragraph font size
|
||
|
|
\usepackage{titlesec}
|
||
|
|
\titleformat*{\paragraph}{\normalfont} %{\thesection}{12pt}{}
|
||
|
|
|
||
|
|
% to remove the word Abstract before the abstract text
|
||
|
|
%\usepackage{abstract}
|
||
|
|
%\renewcommand{\abstractname}{} % clear the title
|
||
|
|
%\renewcommand{\absnamepos}{empty} % originally center
|
||
|
|
|
||
|
|
\usepackage[bottom]{footmisc} %force footnote to stay at bottom of the page
|
||
|
|
\usepackage[bottom=0.5in,top=0.7in,left=0.9in,right=0.9in]{geometry} %define margin size
|
||
|
|
|
||
|
|
\usepackage{url}
|
||
|
|
|
||
|
|
|
||
|
|
%code to insert background image
|
||
|
|
\usepackage{eso-pic}
|
||
|
|
\newcommand\BackgroundPic{%
|
||
|
|
\put(0,0){%
|
||
|
|
\parbox[b][\paperheight]{\paperwidth}{%
|
||
|
|
\vfill
|
||
|
|
\vspace*{-3cm}
|
||
|
|
\centering
|
||
|
|
\includegraphics[width=\paperwidth,height=\paperheight,%
|
||
|
|
keepaspectratio]{img/samk-cover-logo}%
|
||
|
|
\vfill
|
||
|
|
}}}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
\begin{document}
|
||
|
|
%to insert image in the front page
|
||
|
|
\AddToShipoutPicture*{\BackgroundPic}
|
||
|
|
|
||
|
|
|
||
|
|
\begin{center}
|
||
|
|
\begin{vplace}[6]
|
||
|
|
\Large EDUARDO LUIS HOFMANN\\
|
||
|
|
\bigskip\bigskip\bigskip
|
||
|
|
|
||
|
|
\Huge Title of the Thesis will be written\\
|
||
|
|
\bigskip\bigskip
|
||
|
|
|
||
|
|
\Large subtitle of thesis\\
|
||
|
|
\bigskip\bigskip\bigskip\bigskip\bigskip\bigskip
|
||
|
|
\bigskip\bigskip\bigskip\bigskip\bigskip\bigskip
|
||
|
|
DEGREE PROGRAMME IN INDUSTRIAL MANAGEMENT\\2020
|
||
|
|
\end{vplace}
|
||
|
|
\end{center}
|
||
|
|
\pagestyle{empty}
|
||
|
|
|
||
|
|
%page 2
|
||
|
|
\clearpage
|
||
|
|
\pagestyle{plain} %re enable the page numbering
|
||
|
|
|
||
|
|
to be added table describing the document
|
||
|
|
|
||
|
|
%page 3 - CONTENTS
|
||
|
|
\clearpage
|
||
|
|
\tableofcontents
|
||
|
|
|
||
|
|
|
||
|
|
%page 4
|
||
|
|
% START OF THE DOCUMENT
|
||
|
|
\clearpage
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
\clearpage
|
||
|
|
\bibliographystyle{plain}
|
||
|
|
\bibliography{bibliography}
|
||
|
|
|
||
|
|
\end{document}
|