blob: 697cca250023ba30f0a9c04a439182c7603543e3 (
plain)
- stem = eut
- source_baseurl = http://euwiki.org/
- source_basename = EUT/2nd-edition
- # work around in mediawiki bug parsing blockquote tags on same line
- re_blockquote = s|\n*(</?blockquote>)\n*|\n$$1\n|g
- filters = ./pandoc-filter-sections ./pandoc-filter-bib
- export PANDOC_CITEPROC_FILE = $(stem).bib
- #PANDOC_CITEPROC_FILE = $(stem).bib
- # To produce final document: make -B STATUS=final
- STATUS ?= draft
- args += --template=template.tex --latex-engine=xelatex
- args += -H header.tex -B before.tex -A after.tex
- args += $(filters:%=--filter %)
- args += $(PANDOC_CITEPROC_FILE:%=--bibliography=%)
- args += -V mainfont="Lora" -V sansfont="Quattrocento Sans" -V monofont="Inconsolata"
- args += -V papersize=a4paper -V fontsize=10pt
- args += -V documentclass=memoir -V headstyles=komalike -V chapterstyle=ell
- args += -V classoption=oneside -V classoption=titlepage -V classoption=$(STATUS)
- args += -V lang=english -V langoption=variant=british
- args += -V title="Ensuring utmost transparency"
- args += -V subtitle="Free Software and Open Standards under the Rules of Procedure of the European Parliament"
- args += -V author="Carlo Piana" -V author="Ulf Öberg"
- args += -V date=""
- all: $(stem).pdf
- download:
- wget -o $(stem).raw '$(source_baseurl)index.php?title=$(source_basename)&action=edit'
- $(stem).mediawiki: $(stem).raw
- perl -0777 -MHTML::Entities -p \
- -e 's|.*<textarea[^>]*>||s; s|</textarea.*||s;' \
- -e 'decode_entities($$_);' \
- -e 's|.*?\n= |= |s;' \
- -e 's|<!--.*-->||s;' \
- -e '$(re_blockquote);' \
- < $< > $@
- $(stem).pdf: $(stem).mediawiki template.tex
- pandoc -f mediawiki $(args) -o $@ $<
|