summaryrefslogtreecommitdiff
path: root/stuff/tabella.pl
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2011-10-23 13:06:04 +0100
committerdakkar <dakkar@thenautilus.net>2011-10-23 13:06:04 +0100
commit0465d36acc48f9ecd0604ed23fce8b2ba2e4343b (patch)
tree6062544e622f77d621bca220b904017520624efd /stuff/tabella.pl
parentscript per creare fogli di incantesimi (diff)
downloadinventario-0465d36acc48f9ecd0604ed23fce8b2ba2e4343b.tar.gz
inventario-0465d36acc48f9ecd0604ed23fce8b2ba2e4343b.tar.bz2
inventario-0465d36acc48f9ecd0604ed23fce8b2ba2e4343b.zip
spostiamo roba
Diffstat (limited to 'stuff/tabella.pl')
-rw-r--r--stuff/tabella.pl31
1 files changed, 31 insertions, 0 deletions
diff --git a/stuff/tabella.pl b/stuff/tabella.pl
new file mode 100644
index 0000000..93c1123
--- /dev/null
+++ b/stuff/tabella.pl
@@ -0,0 +1,31 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+my @lineterm=qw(& & \\\\);
+my $state=0;my $mline=0;
+while (my $line=<>) {
+ if ($state==0) {
+ if ($line=~/matrix/) {$state=1};
+ }
+ if ($state==1) {
+ if ($line=~/{/) {$state=2};
+ }
+ if ($line=~/\\end/) {$state=3}
+ if ($state==2) {
+ $line=~s[}\s*(&|\\\\|)\s*(%.*)?$][} $lineterm[$mline%3] $2\n]
+ and ++$mline;
+ }
+ print $line;
+ if ($mline==18) {
+ $mline=0;
+ print <<'EOM';
+};
+\end{tikzpicture}
+
+\begin{tikzpicture}
+\matrix
+{
+EOM
+ }
+}