slides: initial setup
This commit is contained in:
parent
50ff93e7af
commit
9768e6796e
15
slides/makefile
Normal file
15
slides/makefile
Normal file
@ -0,0 +1,15 @@
|
||||
slides = $(shell find sections/ -name "*.md" | sort -V)
|
||||
|
||||
pandoc = \
|
||||
@ pandoc $1 \
|
||||
--pdf-engine xelatex \
|
||||
-t beamer \
|
||||
-o $2
|
||||
|
||||
all: slides.pdf handout.pdf
|
||||
|
||||
slides.pdf: $(slides) | images
|
||||
$(call pandoc, $^, $@)
|
||||
|
||||
handout.pdf: $(slides) | images
|
||||
$(call pandoc, $^ -V handout, $@)
|
18
slides/sections/1.md
Normal file
18
slides/sections/1.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: Randomness tests of a non-uniform distribution
|
||||
date: \today
|
||||
author:
|
||||
- Giulia Marcer
|
||||
- Michele Guerini Rocco
|
||||
institute:
|
||||
- Università di Milano-Bicocca
|
||||
|
||||
theme: metropolis
|
||||
aspectratio: 169
|
||||
|
||||
fontsize: 14pt
|
||||
mathfont: FiraMath-Regular
|
||||
sansfont: Fira Sans
|
||||
...
|
||||
|
||||
# Landau distribution
|
Loading…
Reference in New Issue
Block a user