Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc-example-files
Path: blob/master/RMarkdown/rticles/acm_article/Makefile
Views: 1086
# Produce sensys-abstract compliant PDFs from all Markdown files in a directory
# Manuel Moraga | mmoraga@kth.se

# 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