From 4232ab6e3c9b5162cd3d49e0e7413161b2ad88a3 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Wed, 18 May 2016 19:58:33 +0200 Subject: [PATCH] add long review2 stub --- long2/Makefile | 11 +++++++++++ long2/long.tex | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 long2/Makefile create mode 100644 long2/long.tex diff --git a/long2/Makefile b/long2/Makefile new file mode 100644 index 0000000..c188174 --- /dev/null +++ b/long2/Makefile @@ -0,0 +1,11 @@ +LATEX:=pdflatex +DOCUMENT:=long + +all: long.pdf + +%.pdf: %.tex + $(LATEX) $< + $(LATEX) $< + +clean: + $(RM) -v *.fmt *.aux *.log *.out *.toc *.pdf diff --git a/long2/long.tex b/long2/long.tex new file mode 100644 index 0000000..7daaa14 --- /dev/null +++ b/long2/long.tex @@ -0,0 +1,48 @@ +\documentclass{article} + +\usepackage[a4paper]{geometry} +\usepackage{hyperref} + +\title{% + Do you see what I see?\\ + {\large\emph{Functional pearl} (2016)} +} +\author{M.~Lubbers} +\date{\today} + +\hypersetup{% + pdftitle={Do you see what I see?}, + pdfauthor={Mart Lubbers}, + pdfcreator={Mart Lubbers}, + pdfproducer={Mart Lubbers}, + hidelinks +} +\begin{document} +\maketitle +\tableofcontents +\section{Objective} +% what is the goal of this work, what problem is addressed, what was the +% current state of the art, who is the work aimed at? + +\section{Proposal} +% if the paper presents a new idea, what, in a nutshell, is it? + +\section{Evidence} +% Support for claims - Theorems? Case studies? Simulations? Benchmarks? Does +% evidence address issues needed to support claims? + +\section{Shoulders of giants\ldots} +% what previous research does this work build on? What are the key underlying +% theoretical ideas? Software infrastructure? + +\section{Impact} +% has this work been influential? When later research papers cite it, what +% contribution is being referred to? + +\section{Writing} +% analyse the writing + +\section{Discussion points} +% end with questions which you think should arise + +\end{document} -- 2.20.1