International Hellenic University Thesis LaTeX Template - A clean, well-structured and easy-to-use LaTeX template for writing theses at International Hellenic University. The template supports Greek and English languages and comes with a detailed README for guidance.
main.tex
\documentclass[12pt]{report}
% Packages
\usepackage{graphicx} % For images
\usepackage{fancyhdr} % For headers and footers
\usepackage[top=2.5cm, left=2.5cm, right=2.5cm, bottom=2.5cm, headheight=1.25cm, footskip=1.25cm]{geometry} % Page Margins
\usepackage{iflang} % For language conditional commands
\usepackage{polyglossia} % For multiple languages
\usepackage{fontspec} % For specifying fonts
%=================================================================
% Language settings, swith the two languages to change language.
\setdefaultlanguage{english} % Default language is English
\setotherlanguage{greek} % Secondary language is Greek
% Document-specific information
\newcommand{\thesisTitle}{INSERT PAPER TITLE HERE}
\newcommand{\thesisTitleGreek}{ΕΙΣΑΓΕΤΕ ΕΔΩ ΤΟΝ ΤΙΤΛΟ ΤΗΣ ΕΡΓΑΣΙΑΣ}
\newcommand{\studentName}{Alexandros Magos}
\newcommand{\studentNameGreek}{Αλέξανδρος Μάγος}
\newcommand{\studentID}{185320}
\newcommand{\supervisorName}{Antonis Sidiropoulos}
\newcommand{\supervisorNameGreek}{Αντώνης Σιδηρόπουλος}
\newcommand{\undertakingDate}{14-01-2023}
\newcommand{\completionDate}{23-05-2023}
%=================================================================
% Font settings
\setmainfont{FreeSerif} % Main font is FreeSerif
\setsansfont{FreeSans} % Sans Serif font is FreeSans
\setmonofont{FreeMono} % Monospaced font is FreeMono
\newfontfamily\headerfont[Scale=0.95]{FreeSerif} % Font for headers and footers
% Paragraph settings
\setlength{\parskip}{10pt} % Paragraph spacing
\setlength{\parindent}{0pt} % Paragraph indentation
% -----------------------------------
% Header and footer settings
% -----------------------------------
\pagestyle{fancy}
\fancyhf{} % Clear all header and footer fields
\fancyhead[R]{\headerfont\nouppercase{\leftmark}} % Chapter name on right side with headerfont font
\fancyfoot[C]{\headerfont\thepage} % Page number at center with headerfont font
% -----------------------------------
% Document content
% -----------------------------------
\begin{document}
% Front Matter
\pagenumbering{roman} % Roman numerals for front matter
\include{includes/titlepage}
\include{includes/rights}
\include{includes/dedication}
\include{includes/prolog}
\include{includes/summary}
\include{includes/abstract}
% Table of Contents
\tableofcontents
% Main Content
\pagenumbering{arabic} % Arabic numerals for main content
\setcounter{page}{1} % Start counting from page 1
\include{chapters/1_Introduction}
\include{chapters/2_Literature_Review}
\include{chapters/3_Your_Chapters}
\include{chapters/4_Results}
\include{chapters/7_Discussion}
\include{chapters/8_Conclusion}
% Bibliography
\bibliographystyle{ieeetr} % Use IEEE Transactions bibliography style
\bibliography{includes/references} % Reference list located in 'includes/references.bib'
\end{document}

PDF Preview
Create an account to compile and preview