From fbb447379a59f730056a14be0a08167b00cb51ef Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Wed, 25 Jan 2017 20:24:09 +0100 Subject: [PATCH] started with final review --- final_review/Makefile | 26 ++++++++++++++++++++++++++ final_review/a.tex | 39 +++++++++++++++++++++++++++++++++++++++ final_review/preamble.tex | 10 ++++++++++ 3 files changed, 75 insertions(+) create mode 100644 final_review/Makefile create mode 100644 final_review/a.tex create mode 100644 final_review/preamble.tex diff --git a/final_review/Makefile b/final_review/Makefile new file mode 100644 index 0000000..9306daa --- /dev/null +++ b/final_review/Makefile @@ -0,0 +1,26 @@ +DOC:=a +LATEX:=pdflatex +BIBTEX:=bibtex +LATEXFLAGS:=-file-line-error -halt-on-error -no-shell-escape + +TEXS:=$(wildcard *.tex) +BIBS:=$(wildcard *.bib) + + +.PHONY: all +.SECONDARY: $(DOC).fmt + +all: $(DOC).pdf + +%.fmt: preamble.tex + $(LATEX) $(LATEXFLAGS) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump" + +%.pdf: %.tex %.fmt $(BIBS) $(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_review/a.tex b/final_review/a.tex new file mode 100644 index 0000000..3228c84 --- /dev/null +++ b/final_review/a.tex @@ -0,0 +1,39 @@ +%&a +\begin{document} +\maketitleru[authorstext={Author:}, + course={Research Intership}, + righttextheader={Supervisors:}, + righttext={M.J.~Plasmeijer\\P.W.M.~Koopman}] + +\section{Activities} +% Activities Describe which activities you have carried our, incl. how you have +% documented or recorded your work. + +\section{Results} +% Results What were the results and contributions? How did you document these? +% +% Only give a very brief description of the outcome of the research. Where +% possible give pointers to places where more can be found about this. E.g. if +% you have produced or contributed to software, data sets, articles, technical +% reports, or other forms of documentation, then give pointers to these, but +% don't include all this in this final report. + +\section{Reflection \& Evaluation} +%Don't just evaluate and reflect on your results, but also on what you've done +%to get there. + +%What went well/not so well/(not) according to plan? What was harder/easier +%than expected? (Either due to the subject matter, or your skills and +%experience.) Are there particular activities that you found hard or easy, or +%that you are not (or not yet) good at? If you were to start over on the +%internship, what would you do differently? + +%Look ahead to your Master thesis, and to your future career: also given your +%experiences in the research intership, what kind of research would you (not) +%like to do for your Master thesis? Would you want to do your Master thesis +%internally at the university or at an external organisation? What are topics, +%skills, or activities that you want to work at during your Master thesis or +%your future career? Are there topics or activities that you want to avoid in +%the future? Or that you would to specialise in your future career? + +\end{document} diff --git a/final_review/preamble.tex b/final_review/preamble.tex new file mode 100644 index 0000000..5e80112 --- /dev/null +++ b/final_review/preamble.tex @@ -0,0 +1,10 @@ +\documentclass[a4paper]{article} + +\usepackage[british]{babel} +\usepackage{geometry} +\usepackage[hidelinks]{hyperref} +\usepackage{/home/mrl/projects/rutitlepage/rutitlepage} + +\author{Mart Lubbers\\s4109503} +\date{\today} +\title{Research intership: Final review} -- 2.20.1