diff --git a/custom-commands/custom-title.tex b/custom-commands/custom-title-page.tex similarity index 94% rename from custom-commands/custom-title.tex rename to custom-commands/custom-title-page.tex index a8723a2..d7101a6 100644 --- a/custom-commands/custom-title.tex +++ b/custom-commands/custom-title-page.tex @@ -20,19 +20,20 @@ \renewcommand\maketitle{ {\raggedright \begin{center} +\thispagestyle{empty} % Make the logo \makeatletter \centering\includegraphics[height=5cm]{\@logo} % Make the title -\vspace{3.44cm} +\vspace{3cm} {\huge \@title} % The authors, school and university name -\vspace{3.72cm} +\vspace{3cm} {\Large \@author} -\vspace{3.94cm} +\vspace{3cm} \begin{tabular}{rl} \textit{Επιβλέπων} & \@supervisor diff --git a/examples-page.tex b/examples-page.tex deleted file mode 100644 index e5b1c37..0000000 --- a/examples-page.tex +++ /dev/null @@ -1,21 +0,0 @@ -This is a list: -\begin{itemize} - \item item 1 - \item item 2 - \item item 3 -\end{itemize} - -This is some vertical space -\vspace{2cm} - -This is a numbered list: -\begin{enumerate} - \item asdf - \item fdas -\end{enumerate} - -\footnote{Here is a footnote} - -\texttt{This is monospace} -\newline -\newpage \ No newline at end of file diff --git a/packages.tex b/packages.tex index 9046ee9..dbd4520 100644 --- a/packages.tex +++ b/packages.tex @@ -4,19 +4,28 @@ \usepackage[subpreambles=true]{standalone} % Used for all the files inside thesis directory -\usepackage{subfiles} - -% General styling settings -\usepackage{thesis-general} +\usepackage{subfiles} %TODO: possibly unused (remove?) % Paper size and margins \usepackage{geometry} +% --- Languages & Fonts --- +\usepackage{languages-fonts} + +% --- Styling --- +\usepackage{hyperref} % Extensive support for hypertext +\usepackage{authblk} % Support for footnote style author/affiliation +\usepackage{enumitem} % For item lists +\usepackage{greek-enumerate} % Greek enumeration for ordered item lists +\usepackage{float} % For \begin{figure}[H] +\usepackage[font={footnotesize, it}]{caption} % For captions under figures +\usepackage{csquotes} %TODO: unused atm (remove?) +\usepackage{listings} %TODO: unused atm (remove?) + +% --- Bibliography --- \usepackage[backend=bibtex, sorting=none]{biblatex} -\usepackage{csquotes} -\usepackage{listings} % Typeset source code listings -% Custom commands -\input{custom-commands/custom-title} +% --- Custom commands --- +\input{custom-commands/custom-title-page} \input{custom-commands/custom-lists} diff --git a/thesis-general.sty b/thesis-general.sty deleted file mode 100644 index 853fef8..0000000 --- a/thesis-general.sty +++ /dev/null @@ -1,12 +0,0 @@ -\ProvidesPackage{thesis-general} - -% --- Languages & Fonts --- -\usepackage{languages-fonts} - -% --- Styling --- -\usepackage{hyperref} % Extensive support for hypertext -\usepackage{authblk} % Support for footnote style author/affiliation -\usepackage{enumitem} % For item lists -\usepackage{greek-enumerate} % Greek enumeration for ordered item lists -\usepackage{float} % For \begin{figure}[H] -\usepackage[font={footnotesize, it}]{caption} % For captions under figures \ No newline at end of file diff --git a/thesis.pdf b/thesis.pdf index fb985a0..10aeb26 100644 Binary files a/thesis.pdf and b/thesis.pdf differ diff --git a/thesis.tex b/thesis.tex index eb6a9bf..c4407be 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,4 +1,4 @@ -\documentclass{report} +\documentclass[12pt]{report} % Custom packages \input{packages} @@ -12,7 +12,7 @@ %TODO: check if it works or remove \graphicspath{{assets/figures}} -\input{thesis-details} +\input{title-page} \begin{document} diff --git a/thesis-details.tex b/title-page.tex similarity index 100% rename from thesis-details.tex rename to title-page.tex