diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-02-06 23:58:54 -0500 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-02-06 23:58:54 -0500 |
commit | e3675ef3e0eda98482afc093b15fccb5b643a040 (patch) | |
tree | fb8c9b96683b7722df9bc1ce55694385f6bb3e55 /data | |
parent | 40137a5448f04cb6a8a2133dcf3c646ab53db6a4 (diff) |
tables programatically generated from python scripts
Diffstat (limited to 'data')
-rwxr-xr-x | data/maketables.sh | 9 | ||||
-rw-r--r-- | data/tables.orig.tex | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/data/maketables.sh b/data/maketables.sh new file mode 100755 index 0000000..0f043ad --- /dev/null +++ b/data/maketables.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +export TABLE=`mktemp` +export DEATHTABLE=`mktemp` +echo $TABLE +python data.py deathtable > $DEATHTABLE +python data.py table > $TABLE +sed -e "/%%DEATHTABLE%%/{r $DEATHTABLE" -e "d}" -e "/%%MAINTABLE%%/{r $TABLE" -e "d}" <data/tables.orig.tex >data/tables.tex +rm $DEATHTABLE $TABLE diff --git a/data/tables.orig.tex b/data/tables.orig.tex new file mode 100644 index 0000000..3e2de5f --- /dev/null +++ b/data/tables.orig.tex @@ -0,0 +1,6 @@ +\def\deaths{% + %%DEATHTABLE%%{Number of Deaths and Pits Successfully Formed in Each Trial/Subtrial} +} +\def\territory{% + %%MAINTABLE%%{The Pit Depths, Widths, and ``Territory,'' Observed in Each Trial} +} |