2013-06-01 14:03:17 +03:00
|
|
|
|
\documentclass[oneside, 12pt]{book}
|
2013-10-25 00:08:38 +03:00
|
|
|
|
|
|
|
|
|
%% ============================================================================
|
|
|
|
|
%% ΟΡΙΣΜΟΣ ΤΩΝ PACKAGES ΠΟΥ ΘΑ ΧΡΗΣΙΜΟΠΟΙΗΘΟΥΝ
|
|
|
|
|
%% ============================================================================
|
2013-06-01 14:03:17 +03:00
|
|
|
|
\usepackage{thesis}
|
|
|
|
|
\usepackage{tabularx}
|
|
|
|
|
\usepackage{epsfig}
|
2013-10-24 19:18:35 +03:00
|
|
|
|
\usepackage{float}
|
2013-10-25 00:08:38 +03:00
|
|
|
|
\usepackage{listings}
|
2013-06-01 14:03:17 +03:00
|
|
|
|
\usepackage{hyperref}
|
2013-10-27 14:53:51 +02:00
|
|
|
|
\usepackage{color}
|
|
|
|
|
\usepackage{xcolor}
|
2013-10-30 20:58:39 +02:00
|
|
|
|
\usepackage[backend=biber]{biblatex}
|
2013-10-25 00:08:38 +03:00
|
|
|
|
|
|
|
|
|
%% ============================================================================
|
|
|
|
|
%% ΡΥΘΜΙΣΗ ΤΩΝ HYPERLINKS
|
|
|
|
|
%% ============================================================================
|
2013-06-01 14:03:17 +03:00
|
|
|
|
\hypersetup {colorlinks}
|
|
|
|
|
\definecolor{darkred}{rgb}{0.5,0,0}
|
|
|
|
|
\definecolor{darkgreen}{rgb}{0,0.5,0}
|
|
|
|
|
\definecolor{darkblue}{rgb}{0,0,0.5}
|
|
|
|
|
\hypersetup{
|
|
|
|
|
colorlinks,
|
|
|
|
|
linkcolor=darkblue,
|
|
|
|
|
filecolor=darkgreen,
|
|
|
|
|
urlcolor=darkblue,
|
|
|
|
|
citecolor=darkred
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-25 00:08:38 +03:00
|
|
|
|
%% ============================================================================
|
|
|
|
|
%% PHP LISTINGS STYLE
|
|
|
|
|
%% http://tex.stackexchange.com/a/54687
|
|
|
|
|
%% http://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings
|
|
|
|
|
%% http://en.wikibooks.org/wiki/LaTeX/Colors
|
|
|
|
|
%% ============================================================================
|
|
|
|
|
\definecolor{dkgreen}{rgb}{0,.6,0}
|
|
|
|
|
\definecolor{dkblue}{rgb}{0,0,.6}
|
|
|
|
|
\definecolor{dkyellow}{cmyk}{0,0,.8,.3}
|
|
|
|
|
\definecolor{ltgrey}{RGB}{240,240,240}
|
|
|
|
|
\lstset{
|
|
|
|
|
language = php,
|
|
|
|
|
basicstyle = \footnotesize\ttfamily,
|
|
|
|
|
keywordstyle = \color{dkblue},
|
|
|
|
|
stringstyle = \color{red},
|
|
|
|
|
identifierstyle = \color{dkgreen},
|
|
|
|
|
commentstyle = \color{gray},
|
|
|
|
|
emph =[1]{php},
|
|
|
|
|
emphstyle =[1]\color{black},
|
2013-10-25 18:06:10 +03:00
|
|
|
|
emph =[2]{if,and,or,else,public,function,try,catch,return},
|
2013-10-27 19:41:37 +02:00
|
|
|
|
emphstyle =[2]\color{dkblue},
|
2013-10-25 00:08:38 +03:00
|
|
|
|
numbers = left,
|
|
|
|
|
tabsize = 2,
|
|
|
|
|
backgroundcolor = \color{ltgrey},
|
|
|
|
|
extendedchars = true,
|
|
|
|
|
showspaces = false,
|
|
|
|
|
showstringspaces= false}
|
|
|
|
|
|
|
|
|
|
%% ============================================================================
|
2013-06-01 14:03:17 +03:00
|
|
|
|
%% ΤΑ ΠΑΡΑΚΑΤΩ ΕΙΝΑΙ ΥΠΟΧΡΕΩΤΙΚΑ
|
2013-10-25 00:08:38 +03:00
|
|
|
|
%% ============================================================================
|
2013-10-25 23:10:19 +03:00
|
|
|
|
\renewcommand{\thesistitle}{Δημιουργία διαδικτυακού συστήματος συναντήσεων (appointments) με χρήση Google Calendar PHP API}
|
2013-06-01 14:03:17 +03:00
|
|
|
|
\renewcommand{\thesisauthor}{Αλέξανδρος Τσελεγγίδης (2503)}
|
|
|
|
|
\renewcommand{\thesisauthorabbrv}{Α. Τσελεγγίδης}
|
|
|
|
|
\renewcommand{\thesisauthorinitials}{ΑΤ}
|
|
|
|
|
\renewcommand{\thesissupervisor}{Δρ. Νικόλαος Πεταλίδης, Επιστημονικός Συνεργάτης}
|
2013-10-25 23:10:19 +03:00
|
|
|
|
\renewcommand{\thesismonth}{Νοέμβριος}
|
2013-06-01 14:03:17 +03:00
|
|
|
|
\renewcommand{\thesisyear}{2013}
|
|
|
|
|
|
|
|
|
|
%% ΒΙΒΛΙΟΓΡΑΦΙΑ
|
2013-10-30 20:58:39 +02:00
|
|
|
|
\addbibresource{thesis.bib}
|