Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
# Produce sensys-abstract compliant PDFs from all Markdown files in a directory
# Manuel Moraga | [email protected]

# List files to be made
PDFS := $(patsubst %.md,%.pdf,$(wildcard *.md))

all : $(PDFS)

# Accepts PDF target with markdown syntax, makes them using pandoc
%.pdf : %.md
		pandoc $< -o $@ --template=shortpaper.latex --filter pandoc-citeproc --csl=acm-sig-proceedings.csl

clean :
		rm $(PDFS)

rebuild: clean all