start with final solution
authorMart Lubbers <mart@martlubbers.net>
Sun, 22 Jan 2017 11:37:34 +0000 (12:37 +0100)
committerMart Lubbers <mart@martlubbers.net>
Sun, 22 Jan 2017 11:37:34 +0000 (12:37 +0100)
.gitignore [moved from assignment1/.gitignore with 100% similarity]
assignment2/.gitignore [deleted file]
final_assignment/Makefile [new file with mode: 0644]
final_assignment/a.bib [new file with mode: 0644]
final_assignment/a.tex [new file with mode: 0644]
final_assignment/preamble.tex [new file with mode: 0644]

similarity index 100%
rename from assignment1/.gitignore
rename to .gitignore
diff --git a/assignment2/.gitignore b/assignment2/.gitignore
deleted file mode 100644 (file)
index 6ead008..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-*.aux
-*.fmt
-*.log
-*.mlog
-*.pdf
-*.bbl
-*.blg
diff --git a/final_assignment/Makefile b/final_assignment/Makefile
new file mode 100644 (file)
index 0000000..08b2acf
--- /dev/null
@@ -0,0 +1,24 @@
+DOC:=a
+LATEX:=pdflatex
+BIBTEX:=bibtex
+LATEXFLAGS:=-file-line-error -halt-on-error -no-shell-escape
+
+TEXS:=$(wildcard *.tex)
+
+.PHONY: all
+.SECONDARY: $(DOC).fmt
+
+all: $(DOC).pdf
+
+%.fmt: preamble.tex
+       $(LATEX) $(LATEXFLAGS) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump"
+
+%.pdf: %.tex %.fmt %.bib $(TEXS)
+       $(LATEX) $(LATEXFLAGS) $<
+       grep -q '^\\bibdata{' $(basename $<).aux && $(BIBTEX) $(basename $<) || true
+       $(LATEX) $(LATEXFLAGS) $< | tee $(basename $<).mlog
+       grep -iqF 'rerun' $(basename $<).mlog &&\
+               $(LATEX) $(LATEXFLAGS) $< || true
+
+clean:
+       $(RM) $(addprefix $(DOC).,aux log fmt toc bbl blg mlog run.xml out pdf)
diff --git a/final_assignment/a.bib b/final_assignment/a.bib
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/final_assignment/a.tex b/final_assignment/a.tex
new file mode 100644 (file)
index 0000000..001951b
--- /dev/null
@@ -0,0 +1,26 @@
+%&a
+\begin{document}
+\maketitleru[authorstext={Author:},
+       course={Philosophy and Ethics of Computer and Information Sciences}]
+
+\section{Introduction}
+Man, animal, machine: differences and overlap's. The living being as a machine:
+this image has been verypopular in different hist orical periods and is still
+present today, even reinforced by computer technology (``the brain as a
+computer''). At the same time, all kinds of criteria have been (and still are)
+sought in order to separate man from the rest of the world (the natural and the
+artificial one). Using in sights from computer science, philosophy and ethics,
+try to sketch a general vision of how man, animal, and machine relate to each
+other.
+
+
+\section{Research question}
+
+\section{Answer}
+
+\section{Conclusion}
+
+\bibliographystyle{plain}
+%\bibliographystyle{ieeetr}
+\bibliography{a}
+\end{document}
diff --git a/final_assignment/preamble.tex b/final_assignment/preamble.tex
new file mode 100644 (file)
index 0000000..9ec8963
--- /dev/null
@@ -0,0 +1,9 @@
+\documentclass[a4paper]{article}
+
+\usepackage[british]{babel}
+\usepackage{geometry}
+\usepackage{../rutitlepage/rutitlepage}
+
+\author{Mart Lubbers\\s4109503}
+\date{\today}
+\title{Final Assignment:}