Commit 8f66d6c5f9ce69156b7e09d3fb3721d171e3aeac

Thomas de Grivel 2020-03-11T12:39:16

set font 8pt

diff --git a/Makefile b/Makefile
index ae4e7aa..84cca62 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,11 @@
 THEME = Warsaw
+FONTSIZE = 8pt
 
 MD = \
 	bsd.md \
+	railsonlisp.md \
 	test.md
 
-TEX = \
-	railsonlisp.tex
-
 all: pdf
 
 .SUFFIXES: .md .pdf .tex
@@ -17,7 +16,7 @@ clean:
 
 .md.pdf:
 	mkdir -p "${.IMPSRC:%.md=%}"
-	cd "${.IMPSRC:%.md=%}" && pandoc -st beamer -V theme:${THEME} -o ../$@ -f gfm ../${.IMPSRC}
+	cd "${.IMPSRC:%.md=%}" && pandoc -st beamer -V theme:${THEME} -V fontsize:${FONTSIZE} -o ../$@ -f gfm ../${.IMPSRC}
 
 PDF = \
 	${MD:%.md=%.pdf} \
diff --git a/bsd.pdf b/bsd.pdf
index cfd0570..95cdf08 100644
Binary files a/bsd.pdf and b/bsd.pdf differ
diff --git a/railsonlisp.pdf b/railsonlisp.pdf
index 1ceddf9..4203584 100644
Binary files a/railsonlisp.pdf and b/railsonlisp.pdf differ
diff --git a/test.pdf b/test.pdf
index 00236ff..b356056 100644
Binary files a/test.pdf and b/test.pdf differ