aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore7
-rw-r--r--.project7
-rw-r--r--.texlipse14
-rw-r--r--report/bibliography.bib0
-rw-r--r--report/cover.tex0
-rw-r--r--report/project.tex37
-rw-r--r--report/report.tex20
-rw-r--r--report/work.tex1
8 files changed, 85 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index c69c966..a819b04 100644
--- a/.gitignore
+++ b/.gitignore
@@ -77,3 +77,10 @@ local.properties
77 77
78*.bluej 78*.bluej
79*.ctxt 79*.ctxt
80
81######################
82# TeXlipse
83######################
84
85report/out/**
86report/tmp/** \ No newline at end of file
diff --git a/.project b/.project
index 7d9a832..fb4b1d7 100644
--- a/.project
+++ b/.project
@@ -2,17 +2,22 @@
2<projectDescription> 2<projectDescription>
3 <name>a3p-esieequest</name> 3 <name>a3p-esieequest</name>
4 <comment></comment> 4 <comment></comment>
5 <comment></comment>
6 <projects> 5 <projects>
7 </projects> 6 </projects>
8 <buildSpec> 7 <buildSpec>
9 <buildCommand> 8 <buildCommand>
9 <name>net.sourceforge.texlipse.builder.TexlipseBuilder</name>
10 <arguments>
11 </arguments>
12 </buildCommand>
13 <buildCommand>
10 <name>org.eclipse.jdt.core.javabuilder</name> 14 <name>org.eclipse.jdt.core.javabuilder</name>
11 <arguments> 15 <arguments>
12 </arguments> 16 </arguments>
13 </buildCommand> 17 </buildCommand>
14 </buildSpec> 18 </buildSpec>
15 <natures> 19 <natures>
20 <nature>net.sourceforge.texlipse.builder.TexlipseNature</nature>
16 <nature>org.eclipse.jdt.core.javanature</nature> 21 <nature>org.eclipse.jdt.core.javanature</nature>
17 </natures> 22 </natures>
18</projectDescription> 23</projectDescription>
diff --git a/.texlipse b/.texlipse
new file mode 100644
index 0000000..f14557a
--- /dev/null
+++ b/.texlipse
@@ -0,0 +1,14 @@
1#TeXlipse project settings
2#Wed Feb 12 10:30:04 CET 2014
3markTmpDer=true
4builderNum=2
5outputDir=report/out
6makeIndSty=
7bibrefDir=
8outputFormat=pdf
9tempDir=report/tmp
10mainTexFile=report.tex
11outputFile=report.pdf
12langSpell=en
13markDer=true
14srcDir=report
diff --git a/report/bibliography.bib b/report/bibliography.bib
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/report/bibliography.bib
diff --git a/report/cover.tex b/report/cover.tex
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/report/cover.tex
diff --git a/report/project.tex b/report/project.tex
new file mode 100644
index 0000000..d6471ba
--- /dev/null
+++ b/report/project.tex
@@ -0,0 +1,37 @@
1\chapter{The project}
2
3\section{About}
4
5\subsection{Context}
6
7The development of this game was conducted ​​in part of the project-based
8learning unit IGI-1002, at ESIEE Paris, in which students are asked to write a simple adventure game in Java.
9
10\subsection{Authors}
11
12This game was fully developped by Pacien TRAN-GIRARD and Benoît LUBRANO DI
13SBARAGLIONE, two first year ESIEE students ('18).
14
15\section{The game}
16
17\subsection{Theme}
18
19At ESIEE Paris, a student must find a way to reboot the Universe.
20
21\subsection{Map}
22
23See map.svg
24
25\subsection{Scenario}
26
27\subsubsection{Preamble}
28
29\subsubsection{Quest: a friend}
30
31\subsubsection{Quest: a program}
32
33\subsubsection{Quest: a device}
34
35\subsubsection{Quest: a new start}
36
37\subsubsection{Ending} \ No newline at end of file
diff --git a/report/report.tex b/report/report.tex
new file mode 100644
index 0000000..7616326
--- /dev/null
+++ b/report/report.tex
@@ -0,0 +1,20 @@
1\documentclass{memoir}
2
3\begin{document}
4
5\input{cover}
6
7\cleardoublepage
8
9\tableofcontents*
10
11\clearpage
12
13\include{project}
14
15\include{work}
16
17\bibliographystyle{unsrt}
18\bibliography{bibliography}
19
20\end{document}
diff --git a/report/work.tex b/report/work.tex
new file mode 100644
index 0000000..d0b13b5
--- /dev/null
+++ b/report/work.tex
@@ -0,0 +1 @@
\chapter{Work progression} \ No newline at end of file