Datasets:

Modalities:
Tabular
Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
File size: 337 Bytes
95b939a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SOURCES = $(wildcard *.tex)
PNGS = $(SOURCES:.tex=.png)
PDFS = $(SOURCES:.tex=.pdf)

png: $(PNGS)
pdf: $(PDFS)

%.pdf: %.tex
	pdflatex $<
	rm $(<:.tex=.aux) $(<:.tex=.log)

%.png: %.pdf
	convert -density 600 $< -flatten $@

.PHONY: clean
clean:
	rm -rf auto *.aux *.log *.synctex.gz

.PHONY: cleanall
cleanall: clean
	rm -rf *.png *.pdf