From c72342405ffa5ca0f195bfb51978324552e8c537 Mon Sep 17 00:00:00 2001 From: xvw Date: Thu, 10 Oct 2024 17:03:17 +0200 Subject: Adding a small support for the begining of Workshop the first --- support/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 support/Makefile (limited to 'support/Makefile') diff --git a/support/Makefile b/support/Makefile new file mode 100644 index 0000000..2a45ef1 --- /dev/null +++ b/support/Makefile @@ -0,0 +1,11 @@ +all: 2024-10-10.pdf + +%.pdf: %.md + pandoc -t beamer -f markdown+implicit_figures \ + -V theme:default -V aspectratio:169 \ + --pdf-engine=xelatex \ + -V monofont='DejaVu Sans Mono' \ + $(<) -o $(@) + +clean: + rm -rf *.pdf -- cgit v1.2.3