More work on presentation + improves auto images

Added more slides

Auto graphics now work for xkcd and ansi shell output
This commit is contained in:
Jonathan Hodgson 2020-06-07 00:26:07 +01:00
parent b128151e39
commit 2712cddb60
5 changed files with 283 additions and 19 deletions

6
bin/get-auto-graphics 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}'