#!/bin/sh
> shlafly_geom.tex
NUM=1
for SLD in $(cat slides)
do
	sed -e"s/NUM/$NUM/" -e"s/SLD/$SLD/" < template.tex >> shlafly_geom.tex
	NUM=$(($NUM + 1))
done
