2020-09-09 22:53:14 +03:00
%
% 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
2021-01-24 21:36:55 +02:00
% version: 2
2020-09-09 22:53:14 +03:00
% 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}
2021-01-24 21:36:55 +02:00
\usepackage { float} %to allow use of image Here
\usepackage { makecell} % to break cell lines
\usepackage { floatflt} % to make the text around images
\usepackage { enumitem} % to create enumarations using letters A B C --https://tex.stackexchange.com/questions/2291/how-do-i-change-the-enumerate-list-format-to-use-letters-instead-of-the-defaul
2020-09-09 22:53:14 +03:00
2021-01-24 21:36:55 +02:00
\usepackage { multicol} % to generate two column content https://stackoverflow.com/questions/1491717/how-to-display-a-content-in-two-column-layout-in-latex
\usepackage { lipsum} % to add lorem ipsum for testing and formating
\usepackage { hyperref} % to add link in the document
2020-09-09 22:53:14 +03:00
%to minimize use of hyphenation
\spaceskip =1.3\fontdimen 2\font plus 1.3\fontdimen 3\font minus 1.3\fontdimen 4\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
2021-01-24 21:36:55 +02:00
\usepackage [bottom=0.4in,top=0.5in,left=0.9in,right=0.9in] { geometry} %define margin size
2020-09-09 22:53:14 +03:00
\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 ,%
2021-01-24 21:36:55 +02:00
keepaspectratio]{ img/samk-cover-logo.png} %
2020-09-09 22:53:14 +03:00
\vfill
} } }
\begin { document}
%to insert image in the front page
\AddToShipoutPicture * { \BackgroundPic }
\begin { center}
\begin { vplace} [6]
\Large EDUARDO LUIS HOFMANN\\
\bigskip \bigskip \bigskip
2021-01-24 21:36:55 +02:00
\Huge Change the title\\
2020-09-09 22:53:14 +03:00
\bigskip \bigskip
2021-01-24 21:36:55 +02:00
\Large Change the Discipline\\
2020-09-09 22:53:14 +03:00
\bigskip \bigskip \bigskip \bigskip \bigskip \bigskip
\bigskip \bigskip \bigskip \bigskip \bigskip \bigskip
2021-01-24 21:36:55 +02:00
DEGREE PROGRAMME IN INDUSTRIAL MANAGEMENT\\ 2021
2020-09-09 22:53:14 +03:00
\end { vplace}
\end { center}
\pagestyle { empty}
%page 2
2021-01-24 21:36:55 +02:00
%\clearpage
%\pagestyle{plain} %re enable the page numbering
2020-09-09 22:53:14 +03:00
2021-01-24 21:36:55 +02:00
%to be added table describing the document
2020-09-09 22:53:14 +03:00
%page 3 - CONTENTS
2021-01-24 21:36:55 +02:00
2020-09-09 22:53:14 +03:00
\clearpage
2021-01-24 21:36:55 +02:00
\pagestyle { plain} %re enable the page numbering
2020-09-09 22:53:14 +03:00
\tableofcontents
%page 4
% START OF THE DOCUMENT
\clearpage
2021-01-24 21:36:55 +02:00
\chapter { Quotes for the Future}
\section { Eduardo quotes}
\begin { quote}
Do more with the same\\
Do the same with less
\end { quote}
\footnote { someday on history books\cite { linkreference} }
2020-09-09 22:53:14 +03:00
\clearpage
\bibliographystyle { plain}
\bibliography { bibliography}
\end { document}