Starts presentation

Beamer document created
makefile can create a file with or without notes
xkcd images are auto-downloaded by the makefile
This commit is contained in:
Jonathan Hodgson 2020-06-06 18:35:02 +01:00
parent d3db0dd7eb
commit b128151e39
4 changed files with 125 additions and 0 deletions

6
bin/xkcd-filenames Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
grep -o '\\includegraphics.*\}' main.latex |
cut -d'{' -f2 |
cut -d'}' -f 1 |
grep '^auto-' |
awk '{print "./auto-images/" $1 ".png"}'