From e5dc4445fa55694497f84264f3871256b67eab75 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Mon, 22 Dec 2014 23:34:26 +0100 Subject: Handle draft/final status. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ba6c77d..a3b84a4 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,9 @@ re_blockquote = s|\n*()\n*|\n$$1\n|g export PANDOC_CITEPROC_FILE = $(stem).bib #PANDOC_CITEPROC_FILE = $(stem).bib +# To produce final document: make -B STATUS=final +STATUS ?= draft + all: $(stem).pdf download: @@ -24,12 +27,13 @@ $(stem).mediawiki: $(stem).raw $(stem).pdf: $(stem).mediawiki template.tex pandoc -f mediawiki --template=template.tex --latex-engine=xelatex \ + -H header.tex -B before.tex -A after.tex \ --filter ./pandoc-filter-sections --filter ./pandoc-filter-bib \ --bibliography=$(PANDOC_CITEPROC_FILE) \ -V mainfont="Lora" -V sansfont="Quattrocento Sans" -V monofont="Inconsolata" \ -V papersize=a4paper -V fontsize=10pt \ -V documentclass=memoir -V headstyles=komalike -V chapterstyle=ell \ - -V classoption=oneside -V classoption=titlepage \ + -V classoption=oneside -V classoption=titlepage -V classoption=$(STATUS) \ -V lang=english -V langoption=variant=british \ -V title="Ensuring utmost transparency" \ -V subtitle="Free Software and Open Standards under the Rules of Procedure of the European Parliament" \ -- cgit v1.2.3