Browse Source

Initial template for Deliverable 1

master
Frank Blanning 6 years ago
parent
commit
b6eff4a1fe
  1. 8
      tex/1.intro.tex
  2. 1
      tex/2.what.tex
  3. 1
      tex/3.why.tex
  4. 1
      tex/4.others.tex
  5. 1
      tex/5.how.tex
  6. 1
      tex/6.etc.tex
  7. 12
      tex/Makefile
  8. BIN
      tex/main.pdf
  9. 120
      tex/main.tex

8
tex/1.intro.tex

@ -0,0 +1,8 @@
\section{Εισαγωγή}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:

1
tex/2.what.tex

@ -0,0 +1 @@
\section{Τι θα κάνουμε}

1
tex/3.why.tex

@ -0,0 +1 @@
\section{Γιατί θα το κάνουμε}

1
tex/4.others.tex

@ -0,0 +1 @@
\section{Πως το έκαναν άλλοι}

1
tex/5.how.tex

@ -0,0 +1 @@
\section{Πως σκοπεύουμε να το κάνουμε εμείς}

1
tex/6.etc.tex

@ -0,0 +1 @@
\section{Τι άλλο...;}

12
tex/Makefile

@ -0,0 +1,12 @@
.PHONY: main.pdf all clean
all: main.pdf
FLAGS = -pdf -pdflatex="xelatex" -use-make \
-quiet -synctex=1
main.pdf: main.tex
latexmk $(FLAGS) main.tex #; skimview $@
clean:
latexmk -CA

BIN
tex/main.pdf

Binary file not shown.

120
tex/main.tex

@ -0,0 +1,120 @@
{% !TeX spellcheck = el_GR-en_US
\documentclass[11pt]{article}
\usepackage{geometry}
\geometry{a4paper, top=2.5cm, bottom=2.5cm, left=2.2cm,
right=2.2cm}
\usepackage{fontspec}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{titling}
\usepackage{float}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[nonumeralsign]{xgreek}
\usepackage{siunitx}
\usepackage{fancyhdr}
\usepackage{hhline}
\usepackage{hyperref}
\usepackage[export]{adjustbox}
\usepackage{enumitem}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{array}
\setmainfont{Baskerville}
\setmonofont{Consolas}
\newfontfamily\titlefont{Helvetica}
\newfontfamily\headingfont{Helvetica Bold}
\titleformat*{\section}{\large\headingfont}
\titleformat*{\subsection}{\small\headingfont}
\graphicspath{ {./Images/} }
\title{Τεχνολογία Ήχου και Εικόνας 2018\\
Παραδοτεό 1}
\author{Χριστίνα Θεοδωρίδου - 8055\\
Φρανκ Μπλάννινγκ - 6698\\
Αποστόλης Φανάκης - xxxx}
\date{\today}
\pagestyle{fancy}
\lhead{Τεχνολογία Ήχου και Εικόνας 2018}
\rhead{Θεοδωρίδου, Μπλάννινγκ, Φανάκης}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\setlength{\headheight}{14pt}
% \fancypagestyle{firstpage}{%
% \lhead{
% \titlefont \scriptsize
% % \includegraphics[width=.14\linewidth, valign=c ]{LogoAUTH.ai}
% \begin{tabular}{l}
% \textbf{Τεχνολογία Λογισμικού}\\Τομέας Ηλεκτρονικής και
% Υπολογιστών\\Τμήμα Ηλεκτρολόγων Μηχανικών και\\Μηχανικών
% Υπολογιστών Α.Π.Θ
% \end{tabular}
% }
% \rhead{\titlefont \scriptsize 8ο Εξάμηνο - Άνοιξη 2018}
% \setlength{\headheight}{100pt}
% }
\hypersetup{colorlinks=true, linkcolor=black ,urlcolor=blue}
\urlstyle{same}
\begin{document}
{\titlefont \maketitle}
% \thispagestyle{firstpage}
% % \begin{figure}[H]
% % \centering
% % \includegraphics[]{logo.png}
% % \end{figure}
% \begin{center}
% \Large Robot Bartender for the human customer
% \vspace{1cm}
% {\titlefont \Huge Σχεδίαση Συστήματος}
% \end{center}
% \vspace{5cm}
% \vfill
% \begin{flushright}
% \titlefont \footnotesize
% \begin{tabular}{r l}
% Θεοδωρίδου Χριστίνα&christtk@auth.gr\\
% Μπλάννινγκ Φρανκ&frankgou@ece.auth.gr\\
% Παρασκευαΐδης Κωνσταντίνος&konstapf@ece.auth.gr\\
% Πάρναλης-Παλαντζίδης Γιώργος&parnalis@ece.auth.gr\\
% \end{tabular}
% \large
% \vspace{1.5cm}
% \textbf{\today}
% \vspace{.5cm}
% \end{flushright}
% \hrulefill
% \vspace{2.5cm}
% \newpage
\tableofcontents
% \listoffigures
\newpage
\input{1.intro.tex}
\input{2.what.tex}
\input{3.why.tex}
\input{4.others.tex}
\input{5.how.tex}
\input{6.etc.tex}
\end{document}
Loading…
Cancel
Save