From: Mart Lubbers Date: Tue, 7 Oct 2014 08:47:26 +0000 (+0200) Subject: Initial second commit with skeleton X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=6dada530e104b3f161da81745ded6ff5c119f000;p=ker1415-1.git Initial second commit with skeleton --- diff --git a/diagnosis.pl b/pl-files/diagnosis.pl similarity index 100% rename from diagnosis.pl rename to pl-files/diagnosis.pl diff --git a/domain-template.pl b/pl-files/domain-template.pl similarity index 100% rename from domain-template.pl rename to pl-files/domain-template.pl diff --git a/instance-template.pl b/pl-files/instance-template.pl similarity index 100% rename from instance-template.pl rename to pl-files/instance-template.pl diff --git a/planner.pl b/pl-files/planner.pl similarity index 100% rename from planner.pl rename to pl-files/planner.pl diff --git a/sample-blocks-domain.pl b/pl-files/sample-blocks-domain.pl similarity index 100% rename from sample-blocks-domain.pl rename to pl-files/sample-blocks-domain.pl diff --git a/sample-blocks.pl b/pl-files/sample-blocks.pl similarity index 100% rename from sample-blocks.pl rename to pl-files/sample-blocks.pl diff --git a/tp.pl b/pl-files/tp.pl similarity index 100% rename from tp.pl rename to pl-files/tp.pl diff --git a/report/.gitignore b/report/.gitignore new file mode 100644 index 0000000..14e0dfa --- /dev/null +++ b/report/.gitignore @@ -0,0 +1,4 @@ +*.aux +*.log +*.pdf +*.toc diff --git a/report/Makefile b/report/Makefile new file mode 100644 index 0000000..c61ac75 --- /dev/null +++ b/report/Makefile @@ -0,0 +1,6 @@ +all: + pdflatex report.tex + pdflatex report.tex + +clean: + rm -vf *.aux *.log *.pdf *.toc diff --git a/report/report.tex b/report/report.tex new file mode 100644 index 0000000..d917b65 --- /dev/null +++ b/report/report.tex @@ -0,0 +1,23 @@ +\documentclass[titlepage,a4paper]{article} + +\usepackage{lipsum} + +\author{ + Caspar Safarlou (s4205456)\\ + Mart Lubbers (s4109503) +} +\title{Knowledge Representation and Reasoning.\\Assignment 1} +\date{\today} + +\begin{document} +\maketitle +\tableofcontents +\newpage + +\section{Introductie} +\lipsum + +\section{Assignment 1} +\lipsum + +\end{document}