blob: 5d9f26fe99f593e56761b745483b18204717dcd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
default: build
build:
ls target || mkdir target
cp *md target/
pandoc -C target/paper.md -o target/paper.pdf -H https://mohit.uk/formatting.tex --pdf-engine=xelatex -V fontsize:12pt
pandoc -C target/paper.md --css=https://mohit.uk/document.css -s -o target/paper.html
plan:
pandoc target/plan.md -o target/plan.pdf --pdf-engine=pdfroff
read:
zathura target/paper.pdf&
clean:
rm -rf target
count:
wc -w paper.md
|