From 37f11430acc2127d99054490e427908cf2eeb15c Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Thu, 10 Mar 2016 14:29:14 +0100 Subject: [PATCH] skeletons for first short review sessino --- part1/shorts/.gitignore | 6 ++++++ part1/shorts/Makefile | 16 ++++++++++++++++ part1/shorts/data_types.tex | 16 ++++++++++++++++ part1/shorts/pre.tex | 14 ++++++++++++++ part1/shorts/yesterday.tex | 15 +++++++++++++-- 5 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 part1/shorts/.gitignore create mode 100644 part1/shorts/Makefile create mode 100644 part1/shorts/data_types.tex create mode 100644 part1/shorts/pre.tex diff --git a/part1/shorts/.gitignore b/part1/shorts/.gitignore new file mode 100644 index 0000000..d684206 --- /dev/null +++ b/part1/shorts/.gitignore @@ -0,0 +1,6 @@ +*.fmt +*.aux +*.log +*.out +*.toc +*.pdf diff --git a/part1/shorts/Makefile b/part1/shorts/Makefile new file mode 100644 index 0000000..bd19687 --- /dev/null +++ b/part1/shorts/Makefile @@ -0,0 +1,16 @@ +LATEX:=pdflatex +DOCUMENTS:=yesterday data_types + +.SECONDARY: pre.fmt + +all: $(addsuffix .pdf,$(DOCUMENTS)) + +%.pdf: %.tex pre.fmt + $(LATEX) $< + $(LATEX) $< + +pre.fmt: pre.tex + $(LATEX) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump" + +clean: + $(RM) -v *.fmt *.aux *.log *.out *.toc *.pdf diff --git a/part1/shorts/data_types.tex b/part1/shorts/data_types.tex new file mode 100644 index 0000000..7c1b3c5 --- /dev/null +++ b/part1/shorts/data_types.tex @@ -0,0 +1,16 @@ +%&pre +\title{Data types \`a la carte} +\date{2016-03-16} +\begin{document} +\maketitle +%Clearly separated sections covering + +%Summary (as briefly as you can - two or three sentences) +%Evidence (what evidence is offered to support the claims?) +%Strength (what positive basis is there for publishing/reading it?) +%Weaknesses +%Evaluation (if you were running the conference/journal where it was published, +%would you recommend acceptance?) +%Comments on quality of writing +%Queries for discussion +\end{document} diff --git a/part1/shorts/pre.tex b/part1/shorts/pre.tex new file mode 100644 index 0000000..a346ec0 --- /dev/null +++ b/part1/shorts/pre.tex @@ -0,0 +1,14 @@ +\documentclass{article} + +\usepackage{a4wide} % For better page usage +\usepackage{hyperref} + +\hypersetup{% + pdfauthor={Mart Lubbers}, + pdfsubject={Short review}, + pdfcreator={Mart Lubbers}, + pdfproducer={Mart Lubbers}, + hidelinks +} + +\author{Mart Lubbers (s4109503)} diff --git a/part1/shorts/yesterday.tex b/part1/shorts/yesterday.tex index 94d78af..c85b6ac 100644 --- a/part1/shorts/yesterday.tex +++ b/part1/shorts/yesterday.tex @@ -1,5 +1,16 @@ -\documentclass{article} - +%&pre +\title{Yesterday, my program worked. Today, it does not. Why?} +\date{2016-03-16} \begin{document} +\maketitle +%Clearly separated sections covering +%Summary (as briefly as you can - two or three sentences) +%Evidence (what evidence is offered to support the claims?) +%Strength (what positive basis is there for publishing/reading it?) +%Weaknesses +%Evaluation (if you were running the conference/journal where it was published, +%would you recommend acceptance?) +%Comments on quality of writing +%Queries for discussion \end{document} -- 2.20.1