Machine Learning Kurs im Rahmen der Studierendentage im SS 2023
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
451 B

2 years ago
  1. # make creates pdf files of all newly edited .md files
  2. SRCS := $(wildcard *.md)
  3. PDF := $(SRCS:%.md=%.pdf)
  4. #OPT := --pdf-engine=xelatex --variable mainfont="Helvetica" --variable sansfont="Helvetica" -t beamer -s -fmarkdown-implicit_figures --template=template.beamer --highlight-style=kate
  5. OPT := -t beamer -s -fmarkdown-implicit_figures --template=template.beamer --highlight-style=kate
  6. all: ${PDF}
  7. %.pdf: %.md
  8. pandoc $(OPT) --output=$@ $<