From 8b8a550d12a491eb5888565aed534d5a300fcded Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Sun, 22 Jan 2017 12:37:34 +0100 Subject: [PATCH] start with final solution --- assignment1/.gitignore => .gitignore | 0 assignment2/.gitignore | 7 ------- final_assignment/Makefile | 24 ++++++++++++++++++++++++ final_assignment/a.bib | 0 final_assignment/a.tex | 26 ++++++++++++++++++++++++++ final_assignment/preamble.tex | 9 +++++++++ 6 files changed, 59 insertions(+), 7 deletions(-) rename assignment1/.gitignore => .gitignore (100%) delete mode 100644 assignment2/.gitignore create mode 100644 final_assignment/Makefile create mode 100644 final_assignment/a.bib create mode 100644 final_assignment/a.tex create mode 100644 final_assignment/preamble.tex diff --git a/assignment1/.gitignore b/.gitignore similarity index 100% rename from assignment1/.gitignore rename to .gitignore diff --git a/assignment2/.gitignore b/assignment2/.gitignore deleted file mode 100644 index 6ead008..0000000 --- a/assignment2/.gitignore +++ /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 index 0000000..08b2acf --- /dev/null +++ b/final_assignment/Makefile @@ -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 index 0000000..e69de29 diff --git a/final_assignment/a.tex b/final_assignment/a.tex new file mode 100644 index 0000000..001951b --- /dev/null +++ b/final_assignment/a.tex @@ -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 index 0000000..9ec8963 --- /dev/null +++ b/final_assignment/preamble.tex @@ -0,0 +1,9 @@ +\documentclass[a4paper]{article} + +\usepackage[british]{babel} +\usepackage{geometry} +\usepackage{../rutitlepage/rutitlepage} + +\author{Mart Lubbers\\s4109503} +\date{\today} +\title{Final Assignment:} -- 2.20.1